Home
last modified time | relevance | path

Searched refs:module (Results 1 – 25 of 81) sorted by relevance

1234

/php-src/sapi/fpm/fpm/
H A Dfpm_events.c190 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-src/ext/standard/tests/general_functions/
H A Ddl-full-path-not-supported.phpt2 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 Dgh9589.phpt2 dl() segfaults when module is already loaded
/php-src/Zend/
H A Dzend_API.c2333 …ts_allocate_id(module->globals_id_ptr, module->globals_size, (ts_allocate_ctor) module->globals_ct… in zend_startup_module_ex()
2336 module->globals_ctor(module->globals_ptr); in zend_startup_module_ex()
2342 if (module->module_startup_func(module->type, module->module_number)==FAILURE) { in zend_startup_module_ex()
2500 if (!module) { in zend_register_module_ex()
2558 return module; in zend_register_module_ex()
3224 module->module_shutdown_func(module->type, module->module_number); in module_destructor()
3241 module->globals_dtor(module->globals_ptr); in module_destructor()
3277 if (module->request_startup_func(module->type, module->module_number)==FAILURE) { in zend_activate_modules()
3296 module->request_shutdown_func(module->type, module->module_number); in zend_deactivate_modules()
3306 module->request_shutdown_func(module->type, module->module_number); in zend_deactivate_modules()
[all …]
H A Dzend_modules.h126 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 Dzend_API.h222 #define ZEND_MODULE_STARTUP_N(module) zm_startup_##module argument
223 #define ZEND_MODULE_SHUTDOWN_N(module) zm_shutdown_##module argument
224 #define ZEND_MODULE_ACTIVATE_N(module) zm_activate_##module argument
225 #define ZEND_MODULE_DEACTIVATE_N(module) zm_deactivate_##module argument
226 #define ZEND_MODULE_POST_ZEND_DEACTIVATE_N(module) zm_post_zend_deactivate_##module argument
227 #define ZEND_MODULE_INFO_N(module) zm_info_##module argument
228 #define ZEND_MODULE_GLOBALS_CTOR_N(module) zm_globals_ctor_##module argument
229 #define ZEND_MODULE_GLOBALS_DTOR_N(module) zm_globals_dtor_##module argument
238 #define ZEND_MODULE_GLOBALS_CTOR_D(module) void ZEND_MODULE_GLOBALS_CTOR_N(module)(zend_##module##… argument
239 #define ZEND_MODULE_GLOBALS_DTOR_D(module) void ZEND_MODULE_GLOBALS_DTOR_N(module)(zend_##module##… argument
[all …]
/php-src/docs-old/
H A Dself-contained-extensions.md7 * 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-src/ext/session/tests/
H A Dbug74833.phpt2 Bug #74833 Session module number is uninitialized when SID is reset
15 /* Ensure the SID constant has correct module number. */
H A Dbug65475.phpt14 echo "Testing file module".PHP_EOL;
32 Testing file module
H A Dbug73100.phpt25 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 Dsession_module_name_variation1.phpt25 Warning: session_module_name(): Session handler module "blah" cannot be found in %s on line %d
/php-src/ext/mysqlnd/
H A Dmysqlnd_reverse_api.c60 …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 Dmysqlnd_reverse_api.h23 zend_module_entry * module; member
/php-src/ext/session/tests/user_session_module/
H A Dsession_set_save_handler_variation1.phpt26 Warning: session_module_name(): Session handler module "" cannot be found in %s on line %d
30 Warning: session_module_name(): Session handler module "blah" cannot be found in %s on line %d
H A Dbug71162.phpt8 Current session module is designed to write empty session always. In addition, current session modu…
H A Dsession_set_save_handler_closures.phpt56 Warning: session_module_name(): Session handler module "" cannot be found in %s on line %d
59 Warning: session_module_name(): Session handler module "blah" cannot be found in %s on line %d
62 Warning: session_module_name(): Session handler module "foo" cannot be found in %s on line %d
H A Dsession_set_save_handler_basic.phpt69 Warning: session_module_name(): Session handler module "" cannot be found in %s on line %d
72 Warning: session_module_name(): Session handler module "blah" cannot be found in %s on line %d
75 Warning: session_module_name(): Session handler module "foo" cannot be found in %s on line %d
/php-src/ext/standard/
H A Dcredits.c22 #define CREDIT_LINE(module, authors) php_info_print_table_row(2, module, authors) argument
H A Dinfo.c962 zend_module_entry *module; in php_print_info() local
968 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in php_print_info()
969 if (module->info_func || module->version) { in php_print_info()
970 php_info_print_module(module); in php_print_info()
977 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in php_print_info()
978 if (!module->info_func && !module->version) { in php_print_info()
979 php_info_print_module(module); in php_print_info()
/php-src/sapi/apache2handler/
H A Dmod_php.c30 AP_MODULE_DECLARE_DATA module php_module = {
H A Dconfig.w327 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-src/win32/build/
H A Dmkdist.php32 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-src/ext/reflection/
H A Dphp_reflection.c1011 …e == ZEND_INTERNAL_CLASS && ce->info.internal.module && !strcasecmp(ce->info.internal.module->name… in _extension_class_string()
1032 module->module_number, module->name, in _extension_string()
1033 (module->version == NO_VERSION_YET) ? "<no_version>" : module->version); in _extension_string()
1035 if (module->deps) { in _extension_string()
1110 && fptr->internal_function.module == module) { in _extension_string()
1324 if (!module) { in reflection_extension_factory()
1330 intern->ptr = module; in reflection_extension_factory()
6043 intern->ptr = module; in ZEND_METHOD()
6116 && fptr->internal_function.module == module) { in ZEND_METHOD()
6184 …e == ZEND_INTERNAL_CLASS && ce->info.internal.module && !strcasecmp(ce->info.internal.module->name… in add_extension_class()
[all …]
/php-src/tests/run-test/
H A Dextensions-shared.phpt2 phpt EXTENSIONS directive - shared module
/php-src/ext/snmp/tests/
H A Dbug64159.phpt26 Cannot find module (noneXistent): At line %d in (%s)

Completed in 141 milliseconds

1234