Home
last modified time | relevance | path

Searched refs:url_stream_wrappers_hash (Results 1 – 2 of 2) sorted by relevance

/PHP-8.1/main/streams/
H A Dstreams.c35 static HashTable url_stream_wrappers_hash; variable
57 return (FG(stream_wrappers) ? FG(stream_wrappers) : &url_stream_wrappers_hash); in _php_stream_get_url_stream_wrappers_hash()
62 return &url_stream_wrappers_hash; in php_stream_get_url_stream_wrappers_hash_global()
1710 zend_hash_init(&url_stream_wrappers_hash, 8, NULL, NULL, 1); in php_init_stream_wrappers()
1728 zend_hash_destroy(&url_stream_wrappers_hash); in php_shutdown_stream_wrappers()
1765 ret = zend_hash_add_ptr(&url_stream_wrappers_hash, str, (void*)wrapper) ? SUCCESS : FAILURE; in php_register_url_stream_wrapper()
1772 return zend_hash_str_del(&url_stream_wrappers_hash, protocol, strlen(protocol)); in php_unregister_url_stream_wrapper()
1778 …zend_hash_init(FG(stream_wrappers), zend_hash_num_elements(&url_stream_wrappers_hash), NULL, NULL,… in clone_wrapper_hash()
1779 zend_hash_copy(FG(stream_wrappers), &url_stream_wrappers_hash, NULL); in clone_wrapper_hash()
1809 HashTable *wrapper_hash = (FG(stream_wrappers) ? FG(stream_wrappers) : &url_stream_wrappers_hash);
/PHP-8.1/ext/standard/
H A Dstreamsfuncs.c606 HashTable *url_stream_wrappers_hash; in PHP_FUNCTION() local
611 url_stream_wrappers_hash = php_stream_get_url_stream_wrappers_hash(); in PHP_FUNCTION()
613 ZEND_HASH_FOREACH_STR_KEY(url_stream_wrappers_hash, stream_protocol) { in PHP_FUNCTION()

Completed in 19 milliseconds