Lines Matching defs:stream

245 #define php_stream_get_resource_id(stream)		(stream)->rsrc_id  argument
248 # define php_stream_auto_cleanup(stream) { (stream)->__exposed++; } argument
252 # define php_stream_to_zval(stream, zval) { ZVAL_RESOURCE(zval, (stream)->rsrc_id); (stream)->__exp… argument
282 #define php_stream_free(stream, close_options) _php_stream_free((stream), (close_options) TSRMLS_CC) argument
283 #define php_stream_close(stream) _php_stream_free((stream), PHP_STREAM_FREE_CLOSE TSRMLS_CC) argument
284 #define php_stream_pclose(stream) _php_stream_free((stream), PHP_STREAM_FREE_CLOSE_PERSISTENT TSRML… argument
287 #define php_stream_rewind(stream) _php_stream_seek((stream), 0L, SEEK_SET TSRMLS_CC) argument
288 #define php_stream_seek(stream, offset, whence) _php_stream_seek((stream), (offset), (whence) TSRML… argument
291 #define php_stream_tell(stream) _php_stream_tell((stream) TSRMLS_CC) argument
294 #define php_stream_read(stream, buf, count) _php_stream_read((stream), (buf), (count) TSRMLS_CC) argument
297 #define php_stream_write_string(stream, str) _php_stream_write(stream, str, strlen(str) TSRMLS_CC) argument
298 #define php_stream_write(stream, buf, count) _php_stream_write(stream, (buf), (count) TSRMLS_CC) argument
301 #define php_stream_fill_read_buffer(stream, size) _php_stream_fill_read_buffer((stream), (size) TSR… argument
313 #define php_stream_eof(stream) _php_stream_eof((stream) TSRMLS_CC) argument
316 #define php_stream_getc(stream) _php_stream_getc((stream) TSRMLS_CC) argument
319 #define php_stream_putc(stream, c) _php_stream_putc((stream), (c) TSRMLS_CC) argument
322 #define php_stream_flush(stream) _php_stream_flush((stream), 0 TSRMLS_CC) argument
325 #define php_stream_gets(stream, buf, maxlen) _php_stream_get_line((stream), (buf), (maxlen), NULL T… argument
327 #define php_stream_get_line(stream, buf, maxlen, retlen) _php_stream_get_line((stream), (buf), (max… argument
332 #define php_stream_puts(stream, buf) _php_stream_puts((stream), (buf) TSRMLS_CC) argument
335 #define php_stream_stat(stream, ssb) _php_stream_stat((stream), (ssb) TSRMLS_CC) argument
362 #define php_stream_set_option(stream, option, value, ptrvalue) _php_stream_set_option((stream), (op… argument
364 #define php_stream_set_chunk_size(stream, size) _php_stream_set_option((stream), PHP_STREAM_OPTION_… argument
403 #define php_stream_supports_lock(stream) _php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING… argument
404 #define php_stream_lock(stream, mode) _php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, … argument
415 #define php_stream_truncate_supported(stream) (_php_stream_set_option((stream), PHP_STREAM_OPTION_T… argument
419 #define php_stream_truncate_set_size(stream, size) _php_stream_truncate_set_size((stream), (size) T… argument
423 #define php_stream_populate_meta_data(stream, zv) (_php_stream_set_option((stream), PHP_STREAM_OPTI… argument
453 #define php_stream_passthru(stream) _php_stream_passthru((stream) STREAMS_CC TSRMLS_CC) argument
481 #define php_stream_can_cast(stream, as) _php_stream_cast((stream), (as), NULL, 0 TSRMLS_CC) argument
482 #define php_stream_cast(stream, as, ret, show_err) _php_stream_cast((stream), (as), (ret), (show_er… argument
486 #define php_stream_is(stream, anops) ((stream)->ops == anops) argument
489 #define php_stream_is_persistent(stream) (stream)->is_persistent argument
558 #define php_stream_get_from_zval(stream, zstream, mode, options, opened, context) \ argument