Home
last modified time | relevance | path

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

/PHP-7.4/main/streams/
H A Dphp_stream_filter_api.h107 const php_stream_filter_ops *fops; member
132 PHPAPI php_stream_filter *_php_stream_filter_alloc(const php_stream_filter_ops *fops, void *abstrac…
134 #define php_stream_filter_alloc(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (thispt… argument
135 #define php_stream_filter_alloc_rel(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (th… argument
H A Dfilter.c266 PHPAPI php_stream_filter *_php_stream_filter_alloc(const php_stream_filter_ops *fops, void *abstrac… in _php_stream_filter_alloc() argument
273 filter->fops = fops; in _php_stream_filter_alloc()
282 if (filter->fops->dtor) in php_stream_filter_free()
283 filter->fops->dtor(filter); in php_stream_filter_free()
332 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, &consumed, PSFS_FLAG_NORMAL); in php_stream_filter_append_ex()
421 status = current->fops->filter(stream, current, inp, outp, NULL, flags); in _php_stream_filter_flush()
H A Dstreams.c578 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, NULL, flags); in _php_stream_fill_read_buffer()
1182 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, in _php_stream_write_filtered()
/PHP-7.4/ext/zlib/
H A Dzlib_filter.c286 const php_stream_filter_ops *fops = NULL; in php_zlib_filter_create() local
341 fops = &php_zlib_inflate_ops; in php_zlib_filter_create()
404 fops = &php_zlib_deflate_ops; in php_zlib_filter_create()
417 return php_stream_filter_alloc(fops, data, persistent); in php_zlib_filter_create()
/PHP-7.4/ext/bz2/
H A Dbz2_filter.c315 const php_stream_filter_ops *fops = NULL; in php_bz2_filter_create() local
357 fops = &php_bz2_decompress_ops; in php_bz2_filter_create()
390 fops = &php_bz2_compress_ops; in php_bz2_filter_create()
403 return php_stream_filter_alloc(fops, data, persistent); in php_bz2_filter_create()
/PHP-7.4/ext/standard/
H A Dfilters.c1813 const php_stream_filter_ops *fops = NULL; in consumed_filter_create() local
1825 fops = &consumed_filter_ops; in consumed_filter_create()
1827 return php_stream_filter_alloc(fops, data, persistent); in consumed_filter_create()
2017 const php_stream_filter_ops *fops = NULL; in chunked_filter_create() local
2029 fops = &chunked_filter_ops; in chunked_filter_create()
2031 return php_stream_filter_alloc(fops, data, persistent); in chunked_filter_create()
H A Dstreamsfuncs.c542 add_next_index_string(newval, (char *)filter->fops->label); in PHP_FUNCTION()

Completed in 27 milliseconds