Searched refs:finishing (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_write_set_compression_xz.c88 int finishing);
367 * Note that this handles both the regular write case (finishing ==
368 * false) and the end-of-archive case (finishing == true).
371 drive_compressor(struct archive_write *a, struct private_data *state, int finishing) argument
399 if (!finishing && state->stream.avail_in == 0)
403 finishing ? LZMA_FINISH : LZMA_RUN );
407 /* In non-finishing case, check if compressor
409 if (!finishing && state->stream.avail_in == 0)
411 /* In finishing case, this return always means
415 /* This return can only occur in finishing cas
[all...]
H A Darchive_write_set_compression_bzip2.c84 int finishing);
346 * Note that this handles both the regular write case (finishing ==
347 * false) and the end-of-archive case (finishing == true).
350 drive_compressor(struct archive_write *a, struct private_data *state, int finishing) argument
378 if (!finishing && state->stream.avail_in == 0)
382 finishing ? BZ_FINISH : BZ_RUN);
386 /* In non-finishing case, did compressor
388 if (!finishing && state->stream.avail_in == 0)
394 /* Only occurs in finishing case */
H A Darchive_write_set_compression_gzip.c86 int finishing);
416 * Note that this handles both the regular write case (finishing ==
417 * false) and the end-of-archive case (finishing == true).
420 drive_compressor(struct archive_write *a, struct private_data *state, int finishing) argument
448 if (!finishing && state->stream.avail_in == 0)
452 finishing ? Z_FINISH : Z_NO_FLUSH );
456 /* In non-finishing case, check if compressor
458 if (!finishing && state->stream.avail_in == 0)
460 /* In finishing case, this return always means
464 /* This return can only occur in finishing cas
[all...]

Completed in 99 milliseconds