Lines Matching refs:bz_file
132 BZFILE *bz_file; member
148 just_read = BZ2_bzread(self->bz_file, buf, to_read); in php_bz2iop_read()
176 just_wrote = BZ2_bzwrite(self->bz_file, (char*)buf, to_write); in php_bz2iop_write()
195 BZ2_bzclose(self->bz_file); in php_bz2iop_close()
210 return BZ2_bzflush(self->bz_file); in php_bz2iop_flush()
236 self->bz_file = bz; in _php_stream_bz2open_from_BZFILE()
250 BZFILE *bz_file = NULL; in _php_stream_bz2open() local
273 bz_file = BZ2_bzopen(path_copy, mode); in _php_stream_bz2open()
275 if (opened_path && bz_file) { in _php_stream_bz2open()
283 if (bz_file == NULL) { in _php_stream_bz2open()
290 bz_file = BZ2_bzdopen((int)fd, mode); in _php_stream_bz2open()
297 if (opened_path && !bz_file && mode[0] == 'w') { in _php_stream_bz2open()
302 if (bz_file) { in _php_stream_bz2open()
303 retstream = _php_stream_bz2open_from_BZFILE(bz_file, mode, stream STREAMS_REL_CC); in _php_stream_bz2open()
308 BZ2_bzclose(bz_file); in _php_stream_bz2open()
657 errstr = BZ2_bzerror(self->bz_file, &errnum); in php_bz2_error()