Home
last modified time | relevance | path

Searched refs:php_stream_alloc (Results 1 – 13 of 13) sorted by relevance

/PHP-7.4/ext/zip/
H A Dzip_stream.c245 stream = php_stream_alloc(&php_stream_zipio_ops, self, NULL, mode); in php_stream_zip_open()
331 stream = php_stream_alloc(&php_stream_zipio_ops, self, NULL, mode); in php_stream_zip_opener()
/PHP-7.4/ext/standard/
H A Dphp_fopen_wrapper.c216 return php_stream_alloc(&php_stream_output_ops, NULL, 0, "wb"); in php_stream_url_wrap_php()
237 return php_stream_alloc(&php_stream_input_ops, input, 0, "rb"); in php_stream_url_wrap_php()
H A Dftp_fopen_wrapper.c765 dirsdata->dirstream = php_stream_alloc(&php_ftp_dirstream_ops, dirsdata, 0, mode); in php_stream_ftp_opendir()
/PHP-7.4/ext/phar/
H A Ddirstream.c196 return php_stream_alloc(&phar_dir_ops, data, NULL, "r"); in phar_make_dirstream()
292 return php_stream_alloc(&phar_dir_ops, data, NULL, "r"); in phar_make_dirstream()
295 return php_stream_alloc(&phar_dir_ops, data, NULL, "r"); in phar_make_dirstream()
H A Dstream.c210 fpf = php_stream_alloc(&phar_ops, idata, NULL, mode); in phar_wrapper_open_url()
342 fpf = php_stream_alloc(&phar_ops, idata, NULL, mode); in phar_wrapper_open_url()
/PHP-7.4/main/streams/
H A Dglob_wrapper.c250 return php_stream_alloc(&php_glob_stream_ops, pglob, 0, mode); in php_glob_stream_opener()
H A Dplain_wrapper.c1033 stream = php_stream_alloc(&php_plain_files_dirstream_ops, dir, 0, mode); in php_plain_files_dir_opener()
/PHP-7.4/docs/
H A Dstreams.md260 associates it with a `php_stream` using `php_stream_alloc`.
271 ret = php_stream_alloc(&php_stream_stdio_ops, fp, 0, 0, mode);
287 The prototype for php_stream_alloc is this:
290 PHPAPI php_stream * php_stream_alloc(php_stream_ops * ops, void * abstract,
350 stream = php_stream_alloc(&my_ops, state, 0, persistent, "r");
/PHP-7.4/main/
H A Dphp_streams.h250 #define php_stream_alloc(ops, thisptr, persistent_id, mode) _php_stream_alloc((ops), (thisptr), (pe… macro
/PHP-7.4/ext/pdo_oci/
H A Doci_statement.c743 stm = php_stream_alloc(&oci_blob_stream_ops, self, 0, "r+b"); in oci_create_lob_stream()
/PHP-7.4/ext/pdo_pgsql/
H A Dpgsql_driver.c192 stm = php_stream_alloc(&pdo_pgsql_lob_stream_ops, self, 0, "r+b"); in pdo_pgsql_create_lob_stream()
/PHP-7.4/ext/sqlite3/
H A Dsqlite3.c1319 stream = php_stream_alloc(&php_stream_sqlite3_ops, sqlite3_stream, 0, mode); in PHP_METHOD()
/PHP-7.4/ext/pgsql/
H A Dpgsql.c5454 stream = php_stream_alloc(&php_stream_pgsql_fd_ops, pgsql, NULL, "r");

Completed in 97 milliseconds