Home
last modified time | relevance | path

Searched refs:module (Results 26 – 50 of 81) sorted by relevance

1234

/php-src/ext/snmp/tests/
H A Dbug60749.phpt2 Bug #60749: SNMP module should not strip non-standard SNMP port from hostname
/php-src/ext/session/tests/
H A Dgh13856.phpt20 Warning: session_start(): Failed to initialize storage module: user (path: ) in %s on line %d
H A Dsession_save_path_variation4.phpt56 Warning: session_start(): Failed to initialize storage module: files (path: ) in %s on line %d
/php-src/sapi/apache2handler/
H A Dphp_apache.h32 extern module AP_MODULE_DECLARE_DATA php_module;
H A Dconfig.w3212 WARNING("Apache module requires an --enable-zts build of PHP on windows");
H A Dconfig.m42 [whether to build Apache 2 handler module support via DSO through APXS],
4 [Build shared Apache 2 handler module. FILE is the optional pathname to
/php-src/Zend/
H A Dzend_ini.c270 zend_module_entry *module; in zend_register_ini_entries() local
273 ZEND_HASH_REVERSE_FOREACH_PTR(&module_registry, module) { in zend_register_ini_entries()
274 if (module->module_number == module_number) { in zend_register_ini_entries()
275 return zend_register_ini_entries_ex(ini_entry, module_number, module->type); in zend_register_ini_entries()
299 zend_module_entry *module; in zend_unregister_ini_entries() local
302 ZEND_HASH_REVERSE_FOREACH_PTR(&module_registry, module) { in zend_unregister_ini_entries()
303 if (module->module_number == module_number) { in zend_unregister_ini_entries()
304 zend_unregister_ini_entries_ex(module_number, module->type); in zend_unregister_ini_entries()
H A Dzend_builtin_functions.c62 zend_module_entry *module; in zend_startup_builtin_functions() local
64 if (UNEXPECTED(module == NULL)) { in zend_startup_builtin_functions()
67 ZEND_ASSERT(module->module_number == 0); in zend_startup_builtin_functions()
1588 zend_module_entry *module; in ZEND_FUNCTION() local
1591 add_next_index_string(return_value, module->name); in ZEND_FUNCTION()
1613 zend_module_entry *module; in ZEND_FUNCTION() local
1621 module_names[module->module_number] = (char *)module->name; in ZEND_FUNCTION()
2182 zend_module_entry *module; in ZEND_FUNCTION() local
2196 if (!module) { in ZEND_FUNCTION()
2200 if (module->functions) { in ZEND_FUNCTION()
[all …]
/php-src/sapi/fpm/tests/
H A Dgh9921-php-value-ext-mod-handlers.phpt2 FPM: GH-9921 - loading shared ext in FPM config does not register module handlers
/php-src/sapi/litespeed/
H A Dconfig.m44 [Build PHP as litespeed module])],
/php-src/sapi/fpm/
H A Dphp-fpm.service.in28 # Explicit module loading will be denied. This allows to turn off module load and unload
/php-src/ext/session/tests/user_session_module/
H A Dbug71162.phpt8 Current session module is designed to write empty session always.
H A Dbug32330.phpt2 Bug #32330 (session_destroy, "Failed to initialize storage module", custom session handler)
/php-src/sapi/cli/
H A Dphp_cli.c179 zend_module_entry *module; in print_modules() local
184 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in print_modules()
185 php_printf("%s\n", module->name); in print_modules()
1072 zend_module_entry *module; in do_cli() local
1074 if ((module = zend_hash_str_find_ptr(&module_registry, lcname, len)) == NULL) { in do_cli()
1082 php_info_print_module(module); in do_cli()
/php-src/ext/standard/
H A Dbasic_functions.c274 #define BASIC_MINIT_SUBMODULE(module) \ argument
279 #define BASIC_RINIT_SUBMODULE(module) \ argument
280 PHP_RINIT(module)(INIT_FUNC_ARGS_PASSTHRU);
282 #define BASIC_MINFO_SUBMODULE(module) \ argument
283 PHP_MINFO(module)(ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
285 #define BASIC_RSHUTDOWN_SUBMODULE(module) \ argument
286 PHP_RSHUTDOWN(module)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
288 #define BASIC_MSHUTDOWN_SUBMODULE(module) \ argument
289 PHP_MSHUTDOWN(module)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
1925 zend_module_entry *module; local
[all …]
/php-src/ext/session/
H A Dsession.stub.php25 function session_module_name(?string $module = null): string|false {} argument
/php-src/docs-old/
H A Dunix-build-system.md46 even be built as a dynamic module.
59 If you previously built sub-libraries for this module, add the source-code files
/php-src/win32/build/
H A Dphpize.js.in99 /* check if we already picked up a module with the same dirname;
156 STDOUT.WriteLine("module ... " + module_names);
238 // Now generate contents of module based on MODULES, chasing dependencies
/php-src/ext/com_dotnet/
H A Dcom_com.c285 OLECHAR *module = NULL; in PHP_FUNCTION() local
297 module = php_com_string_to_olestring(module_name, module_name_len, (int)code_page); in PHP_FUNCTION()
299 res = CLSIDFromString(module, &clsid); in PHP_FUNCTION()
326 efree(module); in PHP_FUNCTION()
/php-src/.github/scripts/
H A Dsetup-slapd.sh81 dn: cn=module{0},cn=config
/php-src/
H A DCODING_STANDARDS.md35 module, and rely on each other's non-trivial behavior, should be documented as
232 Unexposed module function should be static and should not be defined in
239 1. Main module source file must be named `modulename.c`.
298 * Any authoring information (known bugs, future directions of the module).
/php-src/build/
H A Dpkg.m4221 dnl Substitutes the variable pkgconfigdir as the location where a module
244 dnl module should install arch-independent pkg-config .pc files. By
266 dnl Retrieves the value of the pkg-config variable for the given module.
/php-src/main/
H A Dphp_ini.c116 PHPAPI ZEND_COLD void display_ini_entries(zend_module_entry *module) in display_ini_entries() argument
122 if (module) { in display_ini_entries()
123 module_number = module->module_number; in display_ini_entries()
/php-src/ext/mysqlnd/
H A Dphp_mysqlnd.c73 smart_str_appends(buffer, ext->module->name); in mysqlnd_minfo_dump_api_plugins()
/php-src/ext/dom/lexbor/patches/
H A D0005-Shrink-size-of-static-binary-search-tree.patch73 # Find and append run script run dir to module search path

Completed in 55 milliseconds

1234