Searched defs:fops (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_3/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_3/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);
|
| /PHP_5_3/ext/zlib/ |
| H A D | zlib_filter.c | 290 php_stream_filter_ops *fops = NULL; local 349 fops = &php_zlib_inflate_ops; 419 fops = &php_zlib_deflate_ops; 432 return php_stream_filter_alloc(fops, data, persistent);
|
| /PHP_5_3/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)
|
Completed in 9 milliseconds