Lines Matching refs:write
50 /* initialize write buffer if compressing */
59 /* Compress whatever is at avail_in and next_in and write to the output file.
63 reset to start a new gzip stream. If gz->direct is true, then simply write
74 /* write directly if requested */
78 writ = write(state->fd, strm->next_in, put);
91 /* don't start a new gzip member unless there is data to write */
101 /* write out current buffer contents if full, or if flushing, but if
102 doing Z_FINISH then don't write until we get to Z_STREAM_END */
108 writ = write(state->fd, state->x.next, put);
141 /* Compress len zeros to output. Return -1 on a write error or memory
256 /* write len bytes from buf (the return value will fit in an int) */
282 /* write len bytes to buf, return the number of full items written */
345 /* write string */