Searched refs:zlibError (Results 1 - 4 of 4) sorted by relevance

/haiku-fatelf/src/kits/package/hpkg/
H A DZlibCompressor.cpp59 int zlibError = deflateInit(&fStream, Z_BEST_COMPRESSION); local
60 if (zlibError != Z_OK)
61 return TranslateZlibError(zlibError);
80 int zlibError = deflate(&fStream, 0); local
81 if (zlibError != Z_OK)
82 return TranslateZlibError(zlibError);
107 int zlibError = deflate(&fStream, Z_FINISH); local
108 if (zlibError != Z_OK && zlibError != Z_STREAM_END)
109 return TranslateZlibError(zlibError);
154 int zlibError = deflateInit(&zStream, Z_BEST_COMPRESSION); local
[all...]
H A DZlibDecompressor.cpp61 int zlibError = inflateInit(&fStream); local
62 if (zlibError != Z_OK)
63 return TranslateZlibError(zlibError);
85 int zlibError = inflate(&fStream, 0); local
86 if (zlibError == Z_STREAM_END)
88 else if (zlibError != Z_OK)
89 return TranslateZlibError(zlibError);
114 int zlibError = inflate(&fStream, Z_FINISH); local
115 if (zlibError == Z_STREAM_END)
117 else if (zlibError !
160 int zlibError = inflateInit(&zStream); local
[all...]
/haiku-fatelf/src/system/boot/platform/generic/
H A Dvideo_splash.cpp57 int zlibError = inflateInit(&zStream); local
58 if (zlibError != Z_OK)
59 return B_ERROR; // TODO: translate zlibError
63 zlibError = inflate(&zStream, Z_FINISH);
64 if (zlibError != Z_STREAM_END) {
65 if (zlibError == Z_OK)
68 status = B_ERROR; // TODO: translate zlibError
72 zlibError = inflateEnd(&zStream);
73 if (zlibError != Z_OK && status == B_OK)
74 status = B_ERROR; // TODO: translate zlibError
[all...]
/haiku-fatelf/src/tools/
H A Dgenerate_boot_screen.cpp109 int zlibError = deflateInit(&fStream, Z_BEST_COMPRESSION); local
110 if (zlibError != Z_OK)
111 return; // TODO: translate zlibError
123 int zlibError = Z_OK; local
129 zlibError = deflate(&fStream, flush);
130 if (zlibError != Z_OK &&
131 (flush == Z_FINISH && zlibError != Z_STREAM_END))
132 return zlibError;
140 if (zlibError == Z_STREAM_END)
145 return zlibError;
[all...]

Completed in 52 milliseconds