Home
last modified time | relevance | path

Searched refs:user_config_cache (Results 1 – 3 of 3) sorted by relevance

/php-src/sapi/litespeed/
H A Dlsapi_main.c69 static HashTable user_config_cache; variable
835 zend_hash_init(&user_config_cache, 0, NULL, user_config_cache_entry_dtor, 1); in user_config_cache_init()
992 ctx->entry = zend_hash_str_find_ptr(&user_config_cache, ctx->path, ctx->path_len); in lsapi_activate_user_ini_mk_user_config()
1000 zend_hash_str_update_ptr(&user_config_cache, ctx->path, in lsapi_activate_user_ini_mk_user_config()
1633 zend_hash_destroy(&user_config_cache); in PHP_MSHUTDOWN_FUNCTION()
/php-src/sapi/fpm/fpm/
H A Dfpm_main.c154 HashTable user_config_cache; member
644 user_config_cache_entry *entry = zend_hash_str_find_ptr(&CGIG(user_config_cache), path, path_len); in php_cgi_ini_activate_user_config()
652 zend_hash_str_update_ptr(&CGIG(user_config_cache), path, path_len, entry); in php_cgi_ini_activate_user_config()
1449 zend_hash_init(&php_cgi_globals->user_config_cache, 0, NULL, user_config_cache_entry_dtor, 1); in PHP_INI_END()
1471 zend_hash_destroy(&CGIG(user_config_cache)); in PHP_MSHUTDOWN_FUNCTION()
/php-src/sapi/cgi/
H A Dcgi_main.c164 HashTable user_config_cache; member
787 if ((entry = zend_hash_str_find_ptr(&CGIG(user_config_cache), path, path_len)) == NULL) {
792 entry = zend_hash_str_update_ptr(&CGIG(user_config_cache), path, path_len, new_entry);
1534 zend_hash_init(&php_cgi_globals->user_config_cache, 8, NULL, user_config_cache_entry_dtor, 1);
1549 zend_hash_destroy(&CGIG(user_config_cache));

Completed in 27 milliseconds