Home
last modified time | relevance | path

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

1234

/PHP-8.0/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_machanism_name()
322 return module ? module->support_edge_trigger : 0; in fpm_event_support_edge_trigger()
[all …]
/PHP-8.0/ext/pdo_oci/tests/
H A Dpdo_oci_attr_module.phpt2 PDO_OCI: Attribute: Setting session module
14 $query = 'select module from v$session where sid = sys_context(\'USERENV\', \'SID\')';
18 var_dump($dbh->setAttribute(PDO::OCI_ATTR_MODULE, "some module"));
23 var_dump($row['module']);
30 var_dump($row['module']);
37 var_dump($row['module']);
44 MODULE SET: string(11) "some module"
/PHP-8.0/ext/standard/tests/general_functions/
H A Ddl-full-path-not-supported.phpt2 dl() fails when trying to load full path to module
17 var_dump(dl('/path/to/module'));
21 Warning: dl(): Temporary module name should contain only filename in %s on line %d
/PHP-8.0/ext/session/tests/
H A Dbug74833.phpt2 Bug #74833 Session module number is uninitialized when SID is reset
13 /* Ensure the SID constant has correct module number. */
H A Dbug65475.phpt12 echo "Testing file module".PHP_EOL;
30 Testing file module
H A Dbug73100.phpt27 Warning: session_module_name(): Session save handler module cannot be changed when a session is act…
29 session_module_name(): Argument #1 ($module) cannot be "user"
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 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 Dbug71162.phpt9 Current session module is designed to write empty session always. In addition, current session modu…
H A Dsession_set_save_handler_basic.phpt63 Warning: session_module_name(): Session handler module "" cannot be found in %s on line %d
66 Warning: session_module_name(): Session handler module "blah" cannot be found in %s on line %d
69 Warning: session_module_name(): Session handler module "foo" cannot be found in %s on line %d
/PHP-8.0/Zend/
H A Dzend_API.c1865 …ts_allocate_id(module->globals_id_ptr, module->globals_size, (ts_allocate_ctor) module->globals_ct… in zend_startup_module_ex()
1868 module->globals_ctor(module->globals_ptr); in zend_startup_module_ex()
1874 if (module->module_startup_func(module->type, module->module_number)==FAILURE) { in zend_startup_module_ex()
2018 if (!module) { in zend_register_module_ex()
2071 return module; in zend_register_module_ex()
2631 module->module_shutdown_func(module->type, module->module_number); in module_destructor()
2648 module->globals_dtor(module->globals_ptr); in module_destructor()
2673 if (module->request_startup_func(module->type, module->module_number)==FAILURE) { in zend_activate_modules()
2695 module->request_shutdown_func(module->type, module->module_number); in zend_deactivate_modules()
2704 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 int module_registry_unload_temp(const zend_module_entry *module);
/PHP-8.0/docs/
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-8.0/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-8.0/sapi/phpdbg/
H A Dphpdbg_wait.c202 zval *module; in phpdbg_webdata_decompress() local
219 int mode = phpdbg_array_intersect(&pos, &module); in phpdbg_webdata_decompress()
222 if (strcmp(PHPDBG_NAME, Z_STRVAL_P(module))) { in phpdbg_webdata_decompress()
223 zend_hash_del(&module_registry, Z_STR_P(module)); in phpdbg_webdata_decompress()
227 if (!sapi_module.name || strcmp(sapi_module.name, Z_STRVAL_P(module))) { in phpdbg_webdata_decompress()
228 …th/to/module/%.*s.so", (int) Z_STRLEN_P(module), Z_STRVAL_P(module), (int) Z_STRLEN_P(module), Z_S… in phpdbg_webdata_decompress()
231 } while (module); in phpdbg_webdata_decompress()
H A Dphpdbg_webdata_transfer.c78 zend_module_entry *module; in phpdbg_webdata_compress() local
83 ZEND_HASH_FOREACH_PTR(&module_registry, module) { in phpdbg_webdata_compress()
85 ZVAL_STRING(value, module->name); in phpdbg_webdata_compress()
/PHP-8.0/ext/standard/
H A Dcredits.c22 #define CREDIT_LINE(module, authors) php_info_print_table_row(2, module, authors) argument
/PHP-8.0/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-8.0/tests/run-test/
H A Dbug75042-2.phpt2 phpt EXTENSIONS directive with static module
H A Dbug75042-3.phpt2 phpt EXTENSIONS directive with nonexistent shared module
/PHP-8.0/sapi/embed/
H A DEXPERIMENTAL1 this module is experimental,
/PHP-8.0/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-8.0/ext/reflection/
H A Dphp_reflection.c956 …e == ZEND_INTERNAL_CLASS && ce->info.internal.module && !strcasecmp(ce->info.internal.module->name… in _extension_class_string()
977 module->module_number, module->name, in _extension_string()
978 (module->version == NO_VERSION_YET) ? "<no_version>" : module->version); in _extension_string()
980 if (module->deps) { in _extension_string()
1055 && fptr->internal_function.module == module) { in _extension_string()
1266 if (!module) { in reflection_extension_factory()
1272 intern->ptr = module; in reflection_extension_factory()
5688 intern->ptr = module; in ZEND_METHOD()
5761 && fptr->internal_function.module == module) { in ZEND_METHOD()
5829 …e == ZEND_INTERNAL_CLASS && ce->info.internal.module && !strcasecmp(ce->info.internal.module->name… in add_extension_class()
[all …]

Completed in 105 milliseconds

1234