Lines Matching defs:strm
984 Curl_os400_inflateInit_(z_streamp strm, const char *version, int stream_size)
986 z_const char *msgb4 = strm->msg;
989 ret = inflateInit(strm);
991 if(strm->msg != msgb4)
992 strm->msg = set_thread_string(LK_ZLIB_MSG, strm->msg);
998 Curl_os400_inflateInit2_(z_streamp strm, int windowBits,
1001 z_const char *msgb4 = strm->msg;
1004 ret = inflateInit2(strm, windowBits);
1006 if(strm->msg != msgb4)
1007 strm->msg = set_thread_string(LK_ZLIB_MSG, strm->msg);
1013 Curl_os400_inflate(z_streamp strm, int flush)
1015 z_const char *msgb4 = strm->msg;
1018 ret = inflate(strm, flush);
1020 if(strm->msg != msgb4)
1021 strm->msg = set_thread_string(LK_ZLIB_MSG, strm->msg);
1027 Curl_os400_inflateEnd(z_streamp strm)
1029 z_const char *msgb4 = strm->msg;
1032 ret = inflateEnd(strm);
1034 if(strm->msg != msgb4)
1035 strm->msg = set_thread_string(LK_ZLIB_MSG, strm->msg);