/PHP-8.2/sapi/fpm/fpm/ |
H A D | fpm_events.c | 190 module->add(ev); in fpm_event_queue_add() 242 module->clean(); in fpm_event_queue_destroy() 260 if (module) { in fpm_event_pre_init() 268 if (module) { in fpm_event_pre_init() 276 if (module) { in fpm_event_pre_init() 284 if (module) { in fpm_event_pre_init() 292 if (module) { in fpm_event_pre_init() 300 if (module) { in fpm_event_pre_init() 317 return module ? module->name : NULL; in fpm_event_mechanism_name() 322 return module ? module->support_edge_trigger : 0; in fpm_event_support_edge_trigger() [all …]
|
/PHP-8.2/ext/pdo_oci/tests/ |
H A D | pdo_oci_attr_module.phpt | 2 PDO_OCI: Attribute: Setting session module 16 $query = 'select module from v$session where sid = sys_context(\'USERENV\', \'SID\')'; 20 var_dump($dbh->setAttribute(PDO::OCI_ATTR_MODULE, "some module")); 25 var_dump($row['module']); 32 var_dump($row['module']); 39 var_dump($row['module']); 46 MODULE SET: string(11) "some module"
|
/PHP-8.2/ext/standard/tests/general_functions/ |
H A D | dl-full-path-not-supported.phpt | 2 dl() fails when trying to load full path to module 18 var_dump(dl('/path/to/module')); 22 Warning: dl(): Temporary module name should contain only filename in %s on line %d
|
H A D | gh9589.phpt | 2 dl() segfaults when module is already loaded
|
/PHP-8.2/Zend/ |
H A D | zend_API.c | 2227 …ts_allocate_id(module->globals_id_ptr, module->globals_size, (ts_allocate_ctor) module->globals_ct… in zend_startup_module_ex() 2230 module->globals_ctor(module->globals_ptr); in zend_startup_module_ex() 2236 if (module->module_startup_func(module->type, module->module_number)==FAILURE) { in zend_startup_module_ex() 2394 if (!module) { in zend_register_module_ex() 2447 return module; in zend_register_module_ex() 3058 module->module_shutdown_func(module->type, module->module_number); in module_destructor() 3075 module->globals_dtor(module->globals_ptr); in module_destructor() 3111 if (module->request_startup_func(module->type, module->module_number)==FAILURE) { in zend_activate_modules() 3130 module->request_shutdown_func(module->type, module->module_number); in zend_deactivate_modules() 3140 module->request_shutdown_func(module->type, module->module_number); in zend_deactivate_modules() [all …]
|
H A D | zend_modules.h | 126 void module_destructor(zend_module_entry *module); 127 int module_registry_request_startup(zend_module_entry *module); 128 void module_registry_unload(const zend_module_entry *module);
|
H A D | zend_API.h | 217 #define ZEND_MODULE_STARTUP_N(module) zm_startup_##module argument 218 #define ZEND_MODULE_SHUTDOWN_N(module) zm_shutdown_##module argument 219 #define ZEND_MODULE_ACTIVATE_N(module) zm_activate_##module argument 220 #define ZEND_MODULE_DEACTIVATE_N(module) zm_deactivate_##module argument 221 #define ZEND_MODULE_POST_ZEND_DEACTIVATE_N(module) zm_post_zend_deactivate_##module argument 222 #define ZEND_MODULE_INFO_N(module) zm_info_##module argument 223 #define ZEND_MODULE_GLOBALS_CTOR_N(module) zm_globals_ctor_##module argument 224 #define ZEND_MODULE_GLOBALS_DTOR_N(module) zm_globals_dtor_##module argument 233 #define ZEND_MODULE_GLOBALS_CTOR_D(module) void ZEND_MODULE_GLOBALS_CTOR_N(module)(zend_##module##… argument 234 #define ZEND_MODULE_GLOBALS_DTOR_D(module) void ZEND_MODULE_GLOBALS_DTOR_N(module)(zend_##module##… argument [all …]
|
/PHP-8.2/ext/session/tests/ |
H A D | bug74833.phpt | 2 Bug #74833 Session module number is uninitialized when SID is reset 15 /* Ensure the SID constant has correct module number. */
|
H A D | bug65475.phpt | 14 echo "Testing file module".PHP_EOL; 32 Testing file module
|
H A D | bug73100.phpt | 25 Warning: session_module_name(): Session save handler module cannot be changed when a session is act… 27 session_module_name(): Argument #1 ($module) cannot be "user"
|
H A D | session_set_save_handler_variation1.phpt | 28 Warning: session_module_name(): Session handler module "" cannot be found in %s on line %d 32 Warning: session_module_name(): Session handler module "blah" cannot be found in %s on line %d
|
H A D | session_set_save_handler_closures.phpt | 58 Warning: session_module_name(): Session handler module "" cannot be found in %s on line %d 61 Warning: session_module_name(): Session handler module "blah" cannot be found in %s on line %d 64 Warning: session_module_name(): Session handler module "foo" cannot be found in %s on line %d
|
H A D | session_set_save_handler_basic.phpt | 67 Warning: session_module_name(): Session handler module "" cannot be found in %s on line %d 70 Warning: session_module_name(): Session handler module "blah" cannot be found in %s on line %d 73 Warning: session_module_name(): Session handler module "foo" cannot be found in %s on line %d
|
H A D | bug71162.phpt | 11 Current session module is designed to write empty session always. In addition, current session modu…
|
/PHP-8.2/docs/ |
H A D | self-contained-extensions.md | 7 * Source code for your module 41 It is time to finish the module. Run: 59 The MySQL module will either use the embedded MySQL client library or the MySQL 99 distribute your module with PHP, these facilities allow you to integrate your 100 module easily into the main PHP module framework. 110 modules, use a simple module as a starting point and add your own code. 138 ## Adding shared module support to a module 141 module. The following will explain now how you can add shared module support to 142 an existing module called `foo`.
|
/PHP-8.2/ext/mysqlnd/ |
H A D | mysqlnd_reverse_api.c | 60 …zend_hash_str_add_ptr(&mysqlnd_api_ext_ht, apiext->module->name, strlen(apiext->module->name), (vo… in mysqlnd_reverse_api_register_api()
|
H A D | mysqlnd_reverse_api.h | 23 zend_module_entry * module; member
|
/PHP-8.2/ext/standard/ |
H A D | credits.c | 22 #define CREDIT_LINE(module, authors) php_info_print_table_row(2, module, authors) argument
|
/PHP-8.2/sapi/apache2handler/ |
H A D | mod_php.c | 30 AP_MODULE_DECLARE_DATA module php_module = {
|
H A D | config.w32 | 7 WARNING("Apache 2.0 module requires an --enable-zts build of PHP on windows"); 25 WARNING("Apache 2.2 module requires an --enable-zts build of PHP on windows"); 43 WARNING("Apache 2.4 module requires an --enable-zts build of PHP on windows");
|
/PHP-8.2/sapi/embed/ |
H A D | EXPERIMENTAL | 1 this module is experimental,
|
/PHP-8.2/win32/build/ |
H A D | mkdist.php | 32 function get_depends($module) argument 74 $is_pecl = in_array($module, $pecl_targets); 76 $cmd = "$GLOBALS[build_dir]\\deplister.exe \"$module\" \"$GLOBALS[build_dir]\""; 120 …if (!isset($per_module_deps[basename($module)]) || !in_array($dep, $per_module_deps[basename($modu… 121 $per_module_deps[basename($module)][] = $dep;
|
/PHP-8.2/ext/reflection/ |
H A D | php_reflection.c | 975 …e == ZEND_INTERNAL_CLASS && ce->info.internal.module && !strcasecmp(ce->info.internal.module->name… in _extension_class_string() 996 module->module_number, module->name, in _extension_string() 997 (module->version == NO_VERSION_YET) ? "<no_version>" : module->version); in _extension_string() 999 if (module->deps) { in _extension_string() 1074 && fptr->internal_function.module == module) { in _extension_string() 1287 if (!module) { in reflection_extension_factory() 1293 intern->ptr = module; in reflection_extension_factory() 5978 intern->ptr = module; in ZEND_METHOD() 6051 && fptr->internal_function.module == module) { in ZEND_METHOD() 6119 …e == ZEND_INTERNAL_CLASS && ce->info.internal.module && !strcasecmp(ce->info.internal.module->name… in add_extension_class() [all …]
|
/PHP-8.2/tests/run-test/ |
H A D | extensions-shared.phpt | 2 phpt EXTENSIONS directive - shared module
|
/PHP-8.2/ext/snmp/tests/ |
H A D | bug64159.phpt | 26 Cannot find module (noneXistent): At line %d in (%s)
|