Home | History | Annotate | Download | only in spdyshark

Lines Matching refs:retcode

287     int retcode;
311 retcode = inflateInit(conv_data->rqst_decompressor);
312 if (retcode == Z_OK)
313 retcode = inflateInit(conv_data->rply_decompressor);
314 if (retcode != Z_OK)
315 printf("frame #%d: inflateInit() failed: %d\n", pinfo->fd->num, retcode);
767 int retcode;
775 retcode = inflate(decomp, Z_SYNC_FLUSH);
776 if (retcode == Z_NEED_DICT) {
781 retcode = inflateSetDictionary(decomp,
784 if (retcode == Z_OK)
785 retcode = inflate(decomp, Z_SYNC_FLUSH);
789 if (retcode != Z_OK) {