Lines Matching defs:result
128 zlib_fail (struct unzip_state *state, int result)
130 switch (result)
242 size_t result;
276 result = ZSTD_decompressStream (dctx, &output, &input);
278 if (! ZSTD_isError (result))
287 if (result == 0)
290 while (avail_in > 0 && ! ZSTD_isError (result));
294 if (ZSTD_isError (result))
306 int result = inflateInit (&z);
307 if (result != Z (OK))
310 return zlib_fail (&state, result);
333 result = Z (MEM_ERROR);
340 while ((result = do_inflate (&z)) == Z (OK));
352 if (result != Z (STREAM_END))
353 return zlib_fail (&state, result);
359 Dwfl_Error result = open_stream (fd, start_offset, &state);
361 if (result == DWFL_E_NOERROR && gzdirect (state.zf))
368 if (result != DWFL_E_NOERROR)
369 return fail (&state, result);