Lines Matching defs:status
43 int status;
45 status = XpmReadFileToData(filepath, &data);
47 if (status == XpmSuccess) {
53 status = XpmCreateXpmImageFromData(data, &image, &info);
54 g_assert_cmpint(status, ==, XpmSuccess);
61 return status;
91 int status;
93 status = XpmReadFileToBuffer(filepath, &buffer);
94 g_assert_cmpint(status, ==, XpmSuccess);
96 status = XpmCreateXpmImageFromBuffer(buffer, &image, &info);
98 if (status == XpmSuccess) {
105 return status;