Searched refs:ErrorStatus (Results 1 - 23 of 23) sorted by relevance

/xsrc/external/mit/libXpm/dist/src/
H A DRdFToDat.c47 int ErrorStatus; local in function:XpmReadFileToData
57 ErrorStatus = XpmReadFileToXpmImage(filename, &image, &info);
58 if (ErrorStatus != XpmSuccess)
59 return (ErrorStatus);
61 ErrorStatus =
67 return (ErrorStatus);
H A DWrFFrDat.c47 int ErrorStatus; local in function:XpmWriteFileFromData
51 ErrorStatus = XpmCreateXpmImageFromData(data, &image, &info);
53 if (ErrorStatus != XpmSuccess)
54 return (ErrorStatus);
56 ErrorStatus = XpmWriteFileFromXpmImage(filename, &image, &info);
61 return (ErrorStatus);
H A DCrPFrBuf.c50 int ErrorStatus; local in function:XpmCreatePixmapFromBuffer
59 ErrorStatus = XpmCreateImageFromBuffer(display, buffer,
65 if (ErrorStatus < 0) /* fatal error */
70 ErrorStatus =
72 if (ErrorStatus < 0) /* fatal error */
76 ErrorStatus =
85 if (ErrorStatus < 0) {
95 return (ErrorStatus);
H A DCrPFrDat.c50 int ErrorStatus; local in function:XpmCreatePixmapFromData
59 ErrorStatus = XpmCreateImageFromData(display, data,
65 if (ErrorStatus != XpmSuccess)
70 ErrorStatus =
72 if (ErrorStatus < 0) /* fatal error */
76 ErrorStatus =
85 if (ErrorStatus < 0) {
95 return (ErrorStatus);
H A DRdFToP.c50 int ErrorStatus; local in function:XpmReadFileToPixmap
59 ErrorStatus = XpmReadFileToImage(display, filename,
64 if (ErrorStatus < 0) /* fatal error */
69 ErrorStatus =
71 if (ErrorStatus < 0) /* fatal error */
75 ErrorStatus =
84 if (ErrorStatus < 0) {
94 return (ErrorStatus);
H A DCrIFrBuf.c52 int ErrorStatus; local in function:XpmCreateImageFromBuffer
65 ErrorStatus = xpmParseDataAndCreate(display, &mdata,
69 ErrorStatus = xpmParseDataAndCreate(display, &mdata,
73 if (ErrorStatus >= 0) /* no fatal error */
81 return (ErrorStatus);
91 int ErrorStatus; local in function:XpmCreateXpmImageFromBuffer
101 ErrorStatus = xpmParseData(&mdata, image, info);
103 return (ErrorStatus);
H A DCrIFrDat.c52 int ErrorStatus; local in function:XpmCreateImageFromData
65 ErrorStatus = xpmParseDataAndCreate(display, &mdata,
69 ErrorStatus = xpmParseDataAndCreate(display, &mdata,
73 if (ErrorStatus >= 0) /* no fatal error */
81 return (ErrorStatus);
91 int ErrorStatus; local in function:XpmCreateXpmImageFromData
101 ErrorStatus = xpmParseData(&mdata, image, info);
103 return (ErrorStatus);
H A Dparse.c214 int ErrorStatus; local in function:xpmParseColors
230 ErrorStatus = XpmNoMemory;
235 ErrorStatus = XpmNoMemory;
241 ErrorStatus = XpmFileInvalid;
252 ErrorStatus =
254 if (ErrorStatus != XpmSuccess) {
278 ErrorStatus = XpmNoMemory;
289 ErrorStatus = XpmFileInvalid;
294 ErrorStatus = XpmFileInvalid;
300 ErrorStatus
411 int ErrorStatus; local in function:ParsePixels
744 int ErrorStatus; local in function:xpmParseData
[all...]
H A DCrBufFrP.c52 int ErrorStatus; local in function:XpmCreateBufferFromPixmap
67 ErrorStatus = XpmCreateBufferFromImage(display, buffer_return, ximage,
76 return (ErrorStatus);
H A DCrDatFrP.c52 int ErrorStatus; local in function:XpmCreateDataFromPixmap
67 ErrorStatus = XpmCreateDataFromImage(display, data_return, ximage,
76 return (ErrorStatus);
H A DWrFFrP.c52 int ErrorStatus; local in function:XpmWriteFileFromPixmap
67 ErrorStatus = XpmWriteFileFromImage(display, filename, ximage, shapeimage,
76 return (ErrorStatus);
H A DWrFFrI.c86 int ErrorStatus; local in function:XpmWriteFileFromImage
89 ErrorStatus = XpmCreateXpmImageFromImage(display, image, shapeimage,
91 if (ErrorStatus != XpmSuccess)
92 return (ErrorStatus);
97 ErrorStatus = XpmWriteFileFromXpmImage(filename, &xpmimage, &info);
99 ErrorStatus = XpmWriteFileFromXpmImage(filename, &xpmimage, NULL);
104 return (ErrorStatus);
116 int ErrorStatus; local in function:XpmWriteFileFromXpmImage
119 if ((ErrorStatus = OpenWriteFile(filename, &mdata)) != XpmSuccess)
120 return (ErrorStatus);
181 int ErrorStatus; local in function:xpmWriteFile
[all...]
H A DRdFToI.c72 int ErrorStatus; local in function:XpmReadFileToImage
79 if ((ErrorStatus = OpenReadFile(filename, &mdata)) != XpmSuccess)
80 return (ErrorStatus);
86 ErrorStatus = xpmParseDataAndCreate(display, &mdata,
90 ErrorStatus = xpmParseDataAndCreate(display, &mdata,
94 if (ErrorStatus >= 0) /* no fatal error */
103 return (ErrorStatus);
113 int ErrorStatus; local in function:XpmReadFileToXpmImage
120 if ((ErrorStatus = OpenReadFile(filename, &mdata)) != XpmSuccess)
121 return (ErrorStatus);
[all...]
H A DCrDatFrI.c74 int ErrorStatus; local in function:XpmCreateDataFromImage
81 ErrorStatus = XpmCreateXpmImageFromImage(display, image, shapeimage,
83 if (ErrorStatus != XpmSuccess)
84 return (ErrorStatus);
89 ErrorStatus = XpmCreateDataFromXpmImage(data_return, &xpmimage, &info);
91 ErrorStatus = XpmCreateDataFromXpmImage(data_return, &xpmimage, NULL);
96 return (ErrorStatus);
103 ErrorStatus = status; \
114 int ErrorStatus; local in function:XpmCreateDataFromXpmImage
183 ErrorStatus
[all...]
H A DCrBufFrI.c73 int ErrorStatus; local in function:XpmCreateBufferFromImage
80 ErrorStatus = XpmCreateXpmImageFromImage(display, image, shapeimage,
82 if (ErrorStatus != XpmSuccess)
83 return (ErrorStatus);
88 ErrorStatus =
91 ErrorStatus =
97 return (ErrorStatus);
105 ErrorStatus = status; \
116 int ErrorStatus; local in function:XpmCreateBufferFromXpmImage
219 ErrorStatus
[all...]
H A Dscan.c180 ErrorStatus = status; \
202 int ErrorStatus = 0; local in function:XpmCreateXpmImageFromImage
260 ErrorStatus = GetImagePixels1(shapeimage, width, height, &pmap,
263 ErrorStatus = AGetImagePixels(shapeimage, width, height, &pmap,
267 ErrorStatus = MSWGetImagePixels(display, shapeimage, width, height,
270 if (ErrorStatus != XpmSuccess)
271 RETURN(ErrorStatus);
287 ErrorStatus = GetImagePixels1(image, width, height, &pmap,
291 ErrorStatus = GetImagePixels8(image, width, height, &pmap);
293 ErrorStatus
996 int ErrorStatus; local in function:XpmCreateXpmImageFromPixmap
[all...]
H A Dcreate.c531 int ErrorStatus = XpmSuccess; local in function:CreateColors
675 ErrorStatus = XpmColorError;
689 ErrorStatus = XpmColorError;
705 ErrorStatus = XpmColorError;
730 return (ErrorStatus);
753 ErrorStatus = status; \
776 int ErrorStatus; local in function:XpmCreateImageFromXpmImage
818 ErrorStatus = XpmSuccess;
843 ErrorStatus = CreateColors(display, attributes, image->colorTable,
848 if (ErrorStatus !
1661 int ErrorStatus; local in function:XpmCreatePixmapFromXpmImage
2039 int ErrorStatus; local in function:xpmParseDataAndCreate
[all...]
H A Dhashtab.c185 int ErrorStatus; local in function:xpmHashIntern
187 if ((ErrorStatus = HashTableGrows(table)) != XpmSuccess)
188 return (ErrorStatus);
H A DAttrib.c201 int ErrorStatus; local in function:xpmSetAttributes
203 ErrorStatus = CreateOldColorTable(image->colorTable, image->ncolors,
208 if (ErrorStatus != XpmSuccess) {
/xsrc/external/mit/libXpm/dist/cxpm/
H A Dcxpm.c93 int ErrorStatus,
99 switch (ErrorStatus) {
129 if (ErrorStatus == XpmFileInvalid && data)
144 int ErrorStatus; local in function:main
167 if ((ErrorStatus = OpenReadFile(filename, &data)) != XpmSuccess)
168 ErrorMessage(ErrorStatus, NULL);
170 ErrorStatus = xpmParseData(&data, &image, NULL);
171 ErrorMessage(ErrorStatus, &data);
92 ErrorMessage(int ErrorStatus,xpmData * data) argument
/xsrc/external/mit/libXpm/dist/sxpm/
H A Dsxpm.c113 void ErrorMessage(int ErrorStatus, const char *tag);
143 int ErrorStatus; local in function:main
255 ErrorStatus = XpmReadFileToPixmap(dpy, root, iconFile, &icon.pixmap,
257 ErrorMessage(ErrorStatus, "Icon");
399 ErrorStatus = XpmCreatePixmapFromData(dpy, win, plaid,
402 ErrorMessage(ErrorStatus, "Plaid");
404 ErrorStatus = XpmCreateDataFromPixmap(dpy, &data, view.pixmap, view.mask,
406 ErrorMessage(ErrorStatus, "Data");
442 ErrorStatus = XpmReadFileToBuffer(input, &buffer);
443 ErrorMessage(ErrorStatus, "CreateBufferFromFil
613 ErrorMessage(int ErrorStatus,const char * tag) argument
[all...]
/xsrc/external/mit/libdrm/dist/tests/tegra/
H A Dvic41.h336 uint64_t ErrorStatus : 32; /* 31..0 */ member in struct:__anon2a35dc430e08
H A Dvic42.h335 uint64_t ErrorStatus : 32; /* 31..0 */ member in struct:__anon2a35e0840e08

Completed in 19 milliseconds