Lines Matching refs:stream_wrappers
57 return (FG(stream_wrappers) ? FG(stream_wrappers) : &url_stream_wrappers_hash); in _php_stream_get_url_stream_wrappers_hash()
1669 if (FG(stream_wrappers)) { in php_shutdown_stream_hashes()
1670 zend_hash_destroy(FG(stream_wrappers)); in php_shutdown_stream_hashes()
1671 efree(FG(stream_wrappers)); in php_shutdown_stream_hashes()
1672 FG(stream_wrappers) = NULL; in php_shutdown_stream_hashes()
1763 ALLOC_HASHTABLE(FG(stream_wrappers)); in clone_wrapper_hash()
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()
1775 if (!FG(stream_wrappers)) { in php_register_url_stream_wrapper_volatile()
1779 return zend_hash_add_ptr(FG(stream_wrappers), protocol, wrapper) ? SUCCESS : FAILURE; in php_register_url_stream_wrapper_volatile()
1784 if (!FG(stream_wrappers)) { in php_unregister_url_stream_wrapper_volatile()
1788 return zend_hash_del(FG(stream_wrappers), protocol); in php_unregister_url_stream_wrapper_volatile()
1795 HashTable *wrapper_hash = (FG(stream_wrappers) ? FG(stream_wrappers) : &url_stream_wrappers_hash);
1880 if (FG(stream_wrappers)) {