Lines Matching defs:err
15 #include <openssl/err.h>
96 typedef const char *(*zError__ft) (int err);
125 int err;
129 goto err;
136 err = inflateInit_(&state->istream, ZLIB_VERSION, sizeof(z_stream));
137 if (err != Z_OK)
138 goto err;
145 err = deflateInit_(&state->ostream, Z_DEFAULT_COMPRESSION,
147 if (err != Z_OK)
148 goto err;
152 err:
169 int err = Z_OK;
180 err = deflate(&state->ostream, Z_SYNC_FLUSH);
181 if (err != Z_OK)
190 int err = Z_OK;
201 err = inflate(&state->istream, Z_SYNC_FLUSH);
202 if (err != Z_OK)