Home
last modified time | relevance | path

Searched refs:module_registry (Results 1 – 22 of 22) sorted by relevance

/PHP-7.1/ext/pdo/
H A Dpdo.c166 if (!zend_hash_str_exists(&module_registry, "pdo", sizeof("pdo") - 1)) { in php_pdo_register_driver()
177 if (!zend_hash_str_exists(&module_registry, "pdo", sizeof("pdo") - 1)) { in php_pdo_unregister_driver()
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_wait.c214 zend_hash_init(&zv_registry, zend_hash_num_elements(&module_registry), 0, ZVAL_PTR_DTOR, 0); in phpdbg_webdata_decompress()
215 ZEND_HASH_FOREACH_PTR(&module_registry, mod) { in phpdbg_webdata_decompress()
229 zend_hash_del(&module_registry, Z_STR_P(module)); in phpdbg_webdata_decompress()
H A Dphpdbg_webdata_transfer.c85 ZEND_HASH_FOREACH_PTR(&module_registry, module) { in phpdbg_webdata_compress()
H A Dphpdbg_prompt.c1438 zend_hash_apply(&module_registry, (apply_func_t) add_module_info); in PHPDBG_COMMAND()
/PHP-7.1/Zend/
H A Dzend_modules.h126 extern ZEND_API HashTable module_registry;
H A Dzend_API.c40 ZEND_API HashTable module_registry; variable
1907 ZEND_HASH_FOREACH_PTR(&module_registry, module) { in zend_collect_module_handlers()
1930 ZEND_HASH_FOREACH_PTR(&module_registry, module) { in zend_collect_module_handlers()
1968 zend_hash_sort_ex(&module_registry, zend_sort_modules, NULL, 0); in zend_startup_modules()
1969 zend_hash_apply(&module_registry, zend_startup_module_zval); in zend_startup_modules()
1978 zend_hash_graceful_reverse_destroy(&module_registry); in zend_destroy_modules()
2031 zend_hash_del(&module_registry, lcname); in zend_register_module_ex()
2569 zend_hash_reverse_apply(&module_registry, module_registry_cleanup); in zend_deactivate_modules()
2621 zend_hash_apply(&module_registry, exec_done_cb); in zend_post_deactivate_modules()
2639 return zend_hash_num_elements(&module_registry) + 1; in zend_next_free_module()
[all …]
H A Dzend_builtin_functions.c2232 zend_hash_apply_with_argument(&module_registry, add_extension_info, return_value); in ZEND_FUNCTION()
2257 modules = ecalloc(zend_hash_num_elements(&module_registry) + 2, sizeof(zval)); in ZEND_FUNCTION()
2258 module_names = emalloc((zend_hash_num_elements(&module_registry) + 2) * sizeof(char *)); in ZEND_FUNCTION()
2261 ZEND_HASH_FOREACH_PTR(&module_registry, module) { in ZEND_FUNCTION()
2824 if (zend_hash_exists(&module_registry, lcname)) { in ZEND_FUNCTION()
2848 module = zend_hash_find_ptr(&module_registry, lcname); in ZEND_FUNCTION()
2851 module = zend_hash_str_find_ptr(&module_registry, "core", sizeof("core") - 1); in ZEND_FUNCTION()
H A Dzend.c742 zend_hash_init_ex(&module_registry, 32, NULL, module_destructor_zval, 1, 0); in zend_startup()
/PHP-7.1/sapi/cli/
H A Dphp_cli.c209 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
1132 if ((module = zend_hash_str_find_ptr(&module_registry, lcname, len)) == NULL) { in do_cli()
/PHP-7.1/ext/standard/
H A Dinfo.c991 zend_hash_init(&sorted_registry, zend_hash_num_elements(&module_registry), NULL, NULL, 1); in php_print_info()
992 zend_hash_copy(&sorted_registry, &module_registry, NULL); in php_print_info()
H A Dbasic_functions.c5424 if ((module = zend_hash_str_find_ptr(&module_registry, extname, extname_len)) == NULL) {
/PHP-7.1/ext/phar/
H A Dphar.c121 PHAR_G(has_bz2) = zend_hash_str_exists(&module_registry, "bz2", sizeof("bz2")-1); in phar_split_cache_list()
122 PHAR_G(has_zlib) = zend_hash_str_exists(&module_registry, "zlib", sizeof("zlib")-1); in phar_split_cache_list()
3471 PHAR_G(has_bz2) = zend_hash_str_exists(&module_registry, "bz2", sizeof("bz2")-1);
3472 PHAR_G(has_zlib) = zend_hash_str_exists(&module_registry, "zlib", sizeof("zlib")-1);
3574 if (zend_hash_str_exists(&module_registry, "openssl", sizeof("openssl")-1)) {
H A Dutil.c1498 if (!zend_hash_str_exists(&module_registry, "openssl", sizeof("openssl")-1)) { in phar_verify_signature()
H A Dphar_object.c1296 if (zend_hash_str_exists(&module_registry, "openssl", sizeof("openssl")-1)) { in PHP_METHOD()
/PHP-7.1/ext/opcache/Optimizer/
H A Dpass1_5.c491 zend_module_entry *m = zend_hash_find_ptr(&module_registry, in zend_optimizer_pass1()
H A Dblock_pass.c338 if(zend_hash_exists(&module_registry, Z_STR_P(arg))) { in zend_optimize_block()
/PHP-7.1/main/
H A Dmain.c2309 …if ((module = zend_hash_str_find_ptr(&module_registry, "standard", sizeof("standard")-1)) != NULL)… in php_module_startup()
2321 if ((module = zend_hash_str_find_ptr(&module_registry, "core", sizeof("core")-1)) != NULL) { in php_module_startup()
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_main.c245 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
/PHP-7.1/ext/interbase/
H A Dinterbase.c781 if ((ibase_entry = zend_hash_str_find_ptr(&module_registry, ibase_module_entry.name, in PHP_MSHUTDOWN_FUNCTION()
/PHP-7.1/sapi/cgi/
H A Dcgi_main.c266 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
/PHP-7.1/ext/reflection/
H A Dphp_reflection.c1248 module = zend_hash_find_ptr(&module_registry, lcname); in reflection_extension_factory()
5832 if ((module = zend_hash_str_find_ptr(&module_registry, lcname, name_len)) == NULL) { in ZEND_METHOD()
/PHP-7.1/ext/exif/
H A Dexif.c225 if (zend_hash_str_exists(&module_registry, "mbstring", sizeof("mbstring")-1)) { in PHP_MINIT_FUNCTION()

Completed in 171 milliseconds