Lines Matching refs:FG

61 	return (FG(stream_wrappers) ? FG(stream_wrappers) : &url_stream_wrappers_hash);  in _php_stream_get_url_stream_wrappers_hash()
143 if (!FG(wrapper_errors)) { in php_get_wrapper_errors_list()
146 …return (zend_llist*) zend_hash_str_find_ptr(FG(wrapper_errors), (const char*)&wrapper, sizeof(wrap… in php_get_wrapper_errors_list()
217 if (wrapper && FG(wrapper_errors)) { in php_stream_tidy_wrapper_error_log()
218 zend_hash_str_del(FG(wrapper_errors), (const char*)&wrapper, sizeof(wrapper)); in php_stream_tidy_wrapper_error_log()
247 if (!FG(wrapper_errors)) { in php_stream_wrapper_log_error()
248 ALLOC_HASHTABLE(FG(wrapper_errors)); in php_stream_wrapper_log_error()
249 zend_hash_init(FG(wrapper_errors), 8, NULL, wrapper_list_dtor, 0); in php_stream_wrapper_log_error()
251 list = zend_hash_str_find_ptr(FG(wrapper_errors), (const char*)&wrapper, sizeof(wrapper)); in php_stream_wrapper_log_error()
257 list = zend_hash_str_update_mem(FG(wrapper_errors), (const char*)&wrapper, in php_stream_wrapper_log_error()
288 ret->chunk_size = FG(def_chunk_size); in _php_stream_alloc()
295 if (FG(auto_detect_line_endings)) { in _php_stream_alloc()
1598 FG(pclose_ret) = php_stream_free(stream, PHP_STREAM_FREE_CLOSE | PHP_STREAM_FREE_RSRC_DTOR); in stream_resource_regular_dtor()
1604 FG(pclose_ret) = php_stream_free(stream, PHP_STREAM_FREE_CLOSE | PHP_STREAM_FREE_RSRC_DTOR); in stream_resource_persistent_dtor()
1609 if (FG(stream_wrappers)) { in php_shutdown_stream_hashes()
1610 zend_hash_destroy(FG(stream_wrappers)); in php_shutdown_stream_hashes()
1611 efree(FG(stream_wrappers)); in php_shutdown_stream_hashes()
1612 FG(stream_wrappers) = NULL; in php_shutdown_stream_hashes()
1615 if (FG(stream_filters)) { in php_shutdown_stream_hashes()
1616 zend_hash_destroy(FG(stream_filters)); in php_shutdown_stream_hashes()
1617 efree(FG(stream_filters)); in php_shutdown_stream_hashes()
1618 FG(stream_filters) = NULL; in php_shutdown_stream_hashes()
1621 if (FG(wrapper_errors)) { in php_shutdown_stream_hashes()
1622 zend_hash_destroy(FG(wrapper_errors)); in php_shutdown_stream_hashes()
1623 efree(FG(wrapper_errors)); in php_shutdown_stream_hashes()
1624 FG(wrapper_errors) = NULL; in php_shutdown_stream_hashes()
1698 ALLOC_HASHTABLE(FG(stream_wrappers)); in clone_wrapper_hash()
1699 …zend_hash_init(FG(stream_wrappers), zend_hash_num_elements(&url_stream_wrappers_hash), NULL, NULL,… in clone_wrapper_hash()
1700 zend_hash_copy(FG(stream_wrappers), &url_stream_wrappers_hash, NULL); in clone_wrapper_hash()
1712 if (!FG(stream_wrappers)) { in php_register_url_stream_wrapper_volatile()
1716 …return zend_hash_str_add_ptr(FG(stream_wrappers), protocol, protocol_len, wrapper) ? SUCCESS : FAI… in php_register_url_stream_wrapper_volatile()
1721 if (!FG(stream_wrappers)) { in php_unregister_url_stream_wrapper_volatile()
1725 return zend_hash_str_del(FG(stream_wrappers), protocol, strlen(protocol)); in php_unregister_url_stream_wrapper_volatile()
1732 HashTable *wrapper_hash = (FG(stream_wrappers) ? FG(stream_wrappers) : &url_stream_wrappers_hash);
1816 if (FG(stream_wrappers)) {