Searched refs:url_stream_wrappers_hash (Results 1 – 2 of 2) sorted by relevance
/PHP-8.0/main/streams/ |
H A D | streams.c | 35 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() 1696 zend_hash_init(&url_stream_wrappers_hash, 8, NULL, NULL, 1); in php_init_stream_wrappers() 1714 zend_hash_destroy(&url_stream_wrappers_hash); in php_shutdown_stream_wrappers() 1751 ret = zend_hash_add_ptr(&url_stream_wrappers_hash, str, (void*)wrapper) ? SUCCESS : FAILURE; in php_register_url_stream_wrapper() 1758 return zend_hash_str_del(&url_stream_wrappers_hash, protocol, strlen(protocol)); in php_unregister_url_stream_wrapper() 1764 …zend_hash_init(FG(stream_wrappers), zend_hash_num_elements(&url_stream_wrappers_hash), NULL, NULL,… in clone_wrapper_hash() 1765 zend_hash_copy(FG(stream_wrappers), &url_stream_wrappers_hash, NULL); in clone_wrapper_hash() 1795 HashTable *wrapper_hash = (FG(stream_wrappers) ? FG(stream_wrappers) : &url_stream_wrappers_hash);
|
/PHP-8.0/ext/standard/ |
H A D | streamsfuncs.c | 595 HashTable *url_stream_wrappers_hash; in PHP_FUNCTION() local 600 url_stream_wrappers_hash = php_stream_get_url_stream_wrappers_hash(); in PHP_FUNCTION() 602 ZEND_HASH_FOREACH_STR_KEY(url_stream_wrappers_hash, stream_protocol) { in PHP_FUNCTION()
|
Completed in 20 milliseconds