Home
last modified time | relevance | path

Searched refs:fops (Results 1 – 7 of 7) sorted by relevance

/PHP-7.0/main/streams/
H A Dphp_stream_filter_api.h109 php_stream_filter_ops *fops; member
134 PHPAPI php_stream_filter *_php_stream_filter_alloc(php_stream_filter_ops *fops, void *abstract, int…
136 #define php_stream_filter_alloc(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (thispt… argument
137 #define php_stream_filter_alloc_rel(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (th… argument
H A Dfilter.c293 PHPAPI php_stream_filter *_php_stream_filter_alloc(php_stream_filter_ops *fops, void *abstract, int… in _php_stream_filter_alloc() argument
300 filter->fops = fops; in _php_stream_filter_alloc()
309 if (filter->fops->dtor) in php_stream_filter_free()
310 filter->fops->dtor(filter); in php_stream_filter_free()
359 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, &consumed, PSFS_FLAG_NORMAL); in php_stream_filter_append_ex()
450 status = filter->fops->filter(stream, current, inp, outp, NULL, flags); in _php_stream_filter_flush()
H A Dstreams.c593 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, NULL, flags); in _php_stream_fill_read_buffer()
1159 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, in _php_stream_write_filtered()
/PHP-7.0/ext/bz2/
H A Dbz2_filter.c312 php_stream_filter_ops *fops = NULL; in php_bz2_filter_create() local
369 fops = &php_bz2_decompress_ops; in php_bz2_filter_create()
401 fops = &php_bz2_compress_ops; in php_bz2_filter_create()
414 return php_stream_filter_alloc(fops, data, persistent); in php_bz2_filter_create()
/PHP-7.0/ext/zlib/
H A Dzlib_filter.c291 php_stream_filter_ops *fops = NULL; in php_zlib_filter_create() local
346 fops = &php_zlib_inflate_ops; in php_zlib_filter_create()
408 fops = &php_zlib_deflate_ops; in php_zlib_filter_create()
421 return php_stream_filter_alloc(fops, data, persistent); in php_zlib_filter_create()
/PHP-7.0/ext/standard/
H A Dfilters.c1832 php_stream_filter_ops *fops = NULL; in consumed_filter_create() local
1848 fops = &consumed_filter_ops; in consumed_filter_create()
1850 return php_stream_filter_alloc(fops, data, persistent); in consumed_filter_create()
2040 php_stream_filter_ops *fops = NULL; in chunked_filter_create() local
2056 fops = &chunked_filter_ops; in chunked_filter_create()
2058 return php_stream_filter_alloc(fops, data, persistent); in chunked_filter_create()
H A Dstreamsfuncs.c522 add_next_index_string(newval, (char *)filter->fops->label); in PHP_FUNCTION()

Completed in 35 milliseconds