Searched refs:php_stream_bucket (Results 1 – 8 of 8) sorted by relevance
/PHP-7.2/main/streams/ |
H A D | php_stream_filter_api.h | 41 typedef struct _php_stream_bucket php_stream_bucket; typedef 45 php_stream_bucket *next, *prev; 59 php_stream_bucket *head, *tail; 70 PHPAPI php_stream_bucket *php_stream_bucket_new(php_stream *stream, char *buf, size_t buflen, uint8… 71 PHPAPI int php_stream_bucket_split(php_stream_bucket *in, php_stream_bucket **left, php_stream_buck… 72 PHPAPI void php_stream_bucket_delref(php_stream_bucket *bucket); 74 PHPAPI void php_stream_bucket_prepend(php_stream_bucket_brigade *brigade, php_stream_bucket *bucket… 75 PHPAPI void php_stream_bucket_append(php_stream_bucket_brigade *brigade, php_stream_bucket *bucket); 76 PHPAPI void php_stream_bucket_unlink(php_stream_bucket *bucket); 77 PHPAPI php_stream_bucket *php_stream_bucket_make_writeable(php_stream_bucket *bucket);
|
H A D | filter.c | 74 php_stream_bucket *bucket; in php_stream_bucket_new() 76 bucket = (php_stream_bucket*)pemalloc(sizeof(php_stream_bucket), is_persistent); in php_stream_bucket_new() 104 PHPAPI php_stream_bucket *php_stream_bucket_make_writeable(php_stream_bucket *bucket) in php_stream_bucket_make_writeable() 106 php_stream_bucket *retval; in php_stream_bucket_make_writeable() 114 retval = (php_stream_bucket*)pemalloc(sizeof(php_stream_bucket), bucket->is_persistent); in php_stream_bucket_make_writeable() 128 PHPAPI int php_stream_bucket_split(php_stream_bucket *in, php_stream_bucket **left, php_stream_buck… in php_stream_bucket_split() 130 *left = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent); in php_stream_bucket_split() 131 *right = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent); in php_stream_bucket_split() 150 PHPAPI void php_stream_bucket_delref(php_stream_bucket *bucket) in php_stream_bucket_delref() 324 php_stream_bucket *bucket; in php_stream_filter_append_ex() [all …]
|
H A D | streams.c | 546 php_stream_bucket *bucket; in _php_stream_fill_read_buffer() 1119 php_stream_bucket *bucket; in _php_stream_write_filtered()
|
/PHP-7.2/ext/standard/ |
H A D | user_filters.c | 72 php_stream_bucket *bucket = (php_stream_bucket *)res->ptr; in ZEND_RSRC_DTOR_FUNC() 224 php_stream_bucket *bucket = buckets_in->head; in userfilter_filter() 234 php_stream_bucket *bucket = buckets_out->head; in userfilter_filter() 403 php_stream_bucket *bucket; in PHP_FUNCTION() 434 php_stream_bucket *bucket; in php_stream_bucket_attach() 451 …if ((bucket = (php_stream_bucket *)zend_fetch_resource_ex(pzbucket, PHP_STREAM_BUCKET_RES_NAME, le… in php_stream_bucket_attach() 505 php_stream_bucket *bucket; in PHP_FUNCTION()
|
H A D | filters.c | 45 php_stream_bucket *bucket; in strfilter_rot13_filter() 93 php_stream_bucket *bucket; in strfilter_toupper_filter() 121 php_stream_bucket *bucket; in strfilter_tolower_filter() 212 php_stream_bucket *bucket; in strfilter_strip_tags_filter() 1466 php_stream_bucket *new_bucket; in strfilter_convert_append_bucket() 1648 php_stream_bucket *bucket = NULL; in strfilter_convert_filter() 1768 php_stream_bucket *bucket; in consumed_filter_filter() 1976 php_stream_bucket *bucket; in php_chunked_filter()
|
/PHP-7.2/ext/bz2/ |
H A D | bz2_filter.c | 77 php_stream_bucket *bucket; in php_bz2_decompress_filter() 140 php_stream_bucket *out_bucket; in php_bz2_decompress_filter() 215 php_stream_bucket *bucket; in php_bz2_compress_filter() 253 php_stream_bucket *out_bucket; in php_bz2_compress_filter()
|
/PHP-7.2/ext/zlib/ |
H A D | zlib_filter.c | 64 php_stream_bucket *bucket; in php_zlib_inflate_filter() 109 php_stream_bucket *out_bucket; in php_zlib_inflate_filter() 181 php_stream_bucket *bucket; in php_zlib_deflate_filter() 220 php_stream_bucket *out_bucket; in php_zlib_deflate_filter()
|
/PHP-7.2/ext/iconv/ |
H A D | iconv.c | 2627 php_stream_bucket *new_bucket; in php_iconv_stream_filter_append_bucket() 2817 php_stream_bucket *bucket = NULL; in php_iconv_stream_filter_do_filter()
|
Completed in 35 milliseconds