Home
last modified time | relevance | path

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

/PHP-8.1/main/streams/
H A Dphp_stream_filter_api.h105 const php_stream_filter_ops *fops; member
130 PHPAPI php_stream_filter *_php_stream_filter_alloc(const php_stream_filter_ops *fops, void *abstrac…
132 #define php_stream_filter_alloc(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (thispt… argument
133 #define php_stream_filter_alloc_rel(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (th… argument
H A Dfilter.c264 PHPAPI php_stream_filter *_php_stream_filter_alloc(const php_stream_filter_ops *fops, void *abstrac… in _php_stream_filter_alloc() argument
271 filter->fops = fops; in _php_stream_filter_alloc()
280 if (filter->fops->dtor) in php_stream_filter_free()
281 filter->fops->dtor(filter); in php_stream_filter_free()
330 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, &consumed, PSFS_FLAG_NORMAL); in php_stream_filter_append_ex()
419 status = current->fops->filter(stream, current, inp, outp, NULL, flags); in _php_stream_filter_flush()
H A Dstreams.c576 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, NULL, flags); in _php_stream_fill_read_buffer()
1175 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, in _php_stream_write_filtered()
/PHP-8.1/ext/bz2/
H A Dbz2_filter.c314 const php_stream_filter_ops *fops = NULL; in php_bz2_filter_create() local
356 fops = &php_bz2_decompress_ops; in php_bz2_filter_create()
389 fops = &php_bz2_compress_ops; in php_bz2_filter_create()
402 return php_stream_filter_alloc(fops, data, persistent); in php_bz2_filter_create()
/PHP-8.1/ext/zlib/
H A Dzlib_filter.c285 const php_stream_filter_ops *fops = NULL; in php_zlib_filter_create() local
340 fops = &php_zlib_inflate_ops; in php_zlib_filter_create()
403 fops = &php_zlib_deflate_ops; in php_zlib_filter_create()
416 return php_stream_filter_alloc(fops, data, persistent); in php_zlib_filter_create()
/PHP-8.1/ext/standard/
H A Dfilters.c1681 const php_stream_filter_ops *fops = NULL; in consumed_filter_create() local
1693 fops = &consumed_filter_ops; in consumed_filter_create()
1695 return php_stream_filter_alloc(fops, data, persistent); in consumed_filter_create()
1895 const php_stream_filter_ops *fops = NULL; in chunked_filter_create() local
1907 fops = &chunked_filter_ops; in chunked_filter_create()
1909 return php_stream_filter_alloc(fops, data, persistent); in chunked_filter_create()
H A Dstreamsfuncs.c570 add_next_index_string(newval, (char *)filter->fops->label); in PHP_FUNCTION()

Completed in 31 milliseconds