Lines Matching refs:stream_wrappers
60 return (FG(stream_wrappers) ? FG(stream_wrappers) : &url_stream_wrappers_hash); in _php_stream_get_url_stream_wrappers_hash()
1630 if (FG(stream_wrappers)) { in php_shutdown_stream_hashes()
1631 zend_hash_destroy(FG(stream_wrappers)); in php_shutdown_stream_hashes()
1632 efree(FG(stream_wrappers)); in php_shutdown_stream_hashes()
1633 FG(stream_wrappers) = NULL; in php_shutdown_stream_hashes()
1719 ALLOC_HASHTABLE(FG(stream_wrappers)); in clone_wrapper_hash()
1720 …zend_hash_init(FG(stream_wrappers), zend_hash_num_elements(&url_stream_wrappers_hash), NULL, NULL,… in clone_wrapper_hash()
1721 zend_hash_copy(FG(stream_wrappers), &url_stream_wrappers_hash, NULL); in clone_wrapper_hash()
1733 if (!FG(stream_wrappers)) { in php_register_url_stream_wrapper_volatile()
1737 …return zend_hash_str_add_ptr(FG(stream_wrappers), protocol, protocol_len, wrapper) ? SUCCESS : FAI… in php_register_url_stream_wrapper_volatile()
1742 if (!FG(stream_wrappers)) { in php_unregister_url_stream_wrapper_volatile()
1746 return zend_hash_str_del(FG(stream_wrappers), protocol, strlen(protocol)); in php_unregister_url_stream_wrapper_volatile()
1753 HashTable *wrapper_hash = (FG(stream_wrappers) ? FG(stream_wrappers) : &url_stream_wrappers_hash);
1837 if (FG(stream_wrappers)) {