Lines Matching refs:how
93 If this is the first time in, allocate required memory. state->how will be
199 state->how = GZIP;
220 state->how = COPY;
229 trailer is verified, state->how is reset to LOOK to look for the next gzip
289 state->how = LOOK; /* ready for next stream, once have is 0 (leave
290 state->direct unchanged to remember how) */
299 file depending on state->how. If state->how is LOOK, then a gzip header is
309 if (state->how == LOOK) { /* look for gzip header */
315 if (state->how == COPY) { /* straight copy */
320 else if (state->how == GZIP) { /* decompress */
416 else if (state->how == LOOK || len < (state->size << 1)) {
426 else if (state->how == COPY) { /* read directly */
432 else { /* state->how == GZIP */
619 if (state->how == LOOK && state->have == 0)