Searched refs:fops (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_4/ext/bz2/ |
| H A D | bz2_filter.c | 313 php_stream_filter_ops *fops = NULL; local 383 fops = &php_bz2_decompress_ops; 424 fops = &php_bz2_compress_ops; 437 return php_stream_filter_alloc(fops, data, persistent);
|
| /PHP_5_4/ext/standard/ |
| H A D | filters.c | 1869 php_stream_filter_ops *fops = NULL; local 1885 fops = &consumed_filter_ops; 1887 return php_stream_filter_alloc(fops, data, persistent); 2077 php_stream_filter_ops *fops = NULL; local 2093 fops = &chunked_filter_ops; 2095 return php_stream_filter_alloc(fops, data, persistent);
|
| H A D | streamsfuncs.c | 516 add_next_index_string(newval, (char *)filter->fops->label, 1);
|
| /PHP_5_4/ext/zlib/ |
| H A D | zlib_filter.c | 297 php_stream_filter_ops *fops = NULL; local 356 fops = &php_zlib_inflate_ops; 426 fops = &php_zlib_deflate_ops; 439 return php_stream_filter_alloc(fops, data, persistent);
|
| /PHP_5_4/main/streams/ |
| H A D | filter.c | 295 PHPAPI php_stream_filter *_php_stream_filter_alloc(php_stream_filter_ops *fops, void *abstract, int persistent STREAMS_DC TSRMLS_DC) argument 302 filter->fops = fops; 311 if (filter->fops->dtor) 312 filter->fops->dtor(filter TSRMLS_CC); 361 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, &consumed, PSFS_FLAG_NORMAL TSRMLS_CC); 452 status = filter->fops->filter(stream, filter, inp, outp, NULL, flags TSRMLS_CC);
|
| H A D | php_stream_filter_api.h | 109 php_stream_filter_ops *fops; member in struct:_php_stream_filter 134 PHPAPI php_stream_filter *_php_stream_filter_alloc(php_stream_filter_ops *fops, void *abstract, int persistent STREAMS_DC TSRMLS_DC); 136 #define php_stream_filter_alloc(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (thisptr), (persistent) STREAMS_CC TSRMLS_CC) 137 #define php_stream_filter_alloc_rel(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (thisptr), (persistent) STREAMS_REL_CC TSRMLS_CC)
|
| H A D | streams.c | 615 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, NULL, flags TSRMLS_CC); 1177 status = filter->fops->filter(stream, filter, brig_inp, brig_outp,
|
Completed in 16 milliseconds