Searched refs:fops (Results 1 – 7 of 7) sorted by relevance
/php-src/main/streams/ |
H A D | php_stream_filter_api.h | 105 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 D | filter.c | 264 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 D | streams.c | 583 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, NULL, flags); in _php_stream_fill_read_buffer() 1224 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, in _php_stream_write_filtered()
|
/php-src/ext/zlib/ |
H A D | zlib_filter.c | 285 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-src/ext/bz2/ |
H A D | bz2_filter.c | 314 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-src/ext/standard/ |
H A D | filters.c | 1661 const php_stream_filter_ops *fops = NULL; in consumed_filter_create() local 1673 fops = &consumed_filter_ops; in consumed_filter_create() 1675 return php_stream_filter_alloc(fops, data, persistent); in consumed_filter_create() 1875 const php_stream_filter_ops *fops = NULL; in chunked_filter_create() local 1887 fops = &chunked_filter_ops; in chunked_filter_create() 1889 return php_stream_filter_alloc(fops, data, persistent); in chunked_filter_create()
|
H A D | streamsfuncs.c | 571 add_next_index_string(newval, (char *)filter->fops->label); in PHP_FUNCTION()
|
Completed in 35 milliseconds