Home | History | Annotate | Download | only in examples

Lines Matching full:compress

32    foo.add -- last message to append or last data to compress
60 foo.add file are sufficient to recover an interrupted compress operation.
66 Again, the foo.add file is maintained during the compress operation in case
71 This will not occur if all that happened was an interruption of the compress
75 the new dictionary after a compress operation. Once compression is
94 required to enable the above append and compress operations and their
125 only in the event that the foo.add file containing the data to compress is
126 lost after a compress operation is interrupted.
142 data in the compress operation, overwriting the previous first stored
145 interrupted and the data to compress in the foo.add file was deleted.
148 1: append in process, 2: compress in process, 3: replace in process.
161 compress procedure.
182 Compress and replace procedures:
187 * If there is no data provided to compress (due to a missing foo.add file
191 - Compress the data with the dictionary in foo.dict, and write to the
196 a compress operation.) During this process, the foo.lock file is
215 For the the compress recovery, a missing foo.add file results in foo.gz
219 - Compress recovery:
220 - Pick up compress at * step above
222 - Pick up compress at @ step above
565 file, since the compress operation may have been interrupted before that was
598 /* Compress the len bytes at data and append the compressed data to the
603 file read in again. If there is no data to compress (len == 0), then we
617 /* compress and append compressed data */
652 /* compress, finishing with a partial non-last empty static block */
694 /* no data to compress -- fix up existing gzip stream */
729 "append" : (op == COMPRESS_OP ? "compress" : "replace"), record);
735 append or compress operation. Return -1 if there was an error reading or
961 /* write the dictionary for the next compress to the .temp file */
972 /* roll back to compressed data, mark the compress in progress */
979 /* compress and append the data (clears mark) */
1031 /* check to see if it's time to compress -- if not, then done */
1035 /* time to compress */