Home
last modified time | relevance | path

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

123456

/PHP-5.6/sapi/fpm/fpm/
H A Dfpm_events.c171 module->add(ev); in fpm_event_queue_add()
223 module->clean(); in fpm_event_queue_destroy()
241 if (module) { in fpm_event_pre_init()
249 if (module) { in fpm_event_pre_init()
257 if (module) { in fpm_event_pre_init()
265 if (module) { in fpm_event_pre_init()
273 if (module) { in fpm_event_pre_init()
281 if (module) { in fpm_event_pre_init()
298 return module ? module->name : NULL; in fpm_event_machanism_name()
304 return module ? module->support_edge_trigger : 0; in fpm_event_support_edge_trigger()
[all …]
/PHP-5.6/ext/skeleton/
H A Dskeleton.php7 $module = 'extname'; variable
8 $functions = get_extension_funcs($module);
14 $function = 'confirm_' . $module . '_compiled';
15 if (extension_loaded($module)) {
16 $str = $function($module);
18 $str = "Module $module is not compiled into PHP";
/PHP-5.6/ext/session/tests/
H A Dsession_module_name_error.phpt11 * Prototype : string session_module_name([string $module])
12 * Description : Get and/or set the current session module
99 Warning: session_module_name(): Cannot find named PHP session module (0) in %s on line %d
104 Warning: session_module_name(): Cannot find named PHP session module (1) in %s on line %d
144 Warning: session_module_name(): Cannot find named PHP session module () in %s on line %d
149 Warning: session_module_name(): Cannot find named PHP session module () in %s on line %d
159 Warning: session_module_name(): Cannot find named PHP session module () in %s on line %d
169 Warning: session_module_name(): Cannot find named PHP session module () in %s on line %d
174 Warning: session_module_name(): Cannot find named PHP session module () in %s on line %d
179 Warning: session_module_name(): Cannot find named PHP session module () in %s on line %d
[all …]
H A Dsession_module_name_variation1.phpt11 * Prototype : string session_module_name([string $module])
12 * Description : Get and/or set the current session module
29 Warning: session_module_name(): Cannot find named PHP session module (blah) in %s on line %d
H A Dbug65475.phpt12 echo "Testing file module".PHP_EOL;
30 Testing file module
H A Dsession_module_name_basic.phpt11 * Prototype : string session_module_name([string $module])
12 * Description : Get and/or set the current session module
H A Dsession_module_name_variation2.phpt11 * Prototype : string session_module_name([string $module])
12 * Description : Get and/or set the current session module
H A Dsession_module_name_variation4.phpt15 * Prototype : string session_module_name([string $module])
16 * Description : Get and/or set the current session module
H A Dsession_set_save_handler_variation1.phpt32 Warning: session_module_name(): Cannot find named PHP session module () in %s on line %d
36 Warning: session_module_name(): Cannot find named PHP session module (blah) in %s on line %d
/PHP-5.6/ext/mcrypt/
H A Dmcrypt_filter.c28 MCRYPT module; member
75 mcrypt_generic(data->module, outchunk + n, data->blocksize); in php_mcrypt_filter()
77 mdecrypt_generic(data->module, outchunk + n, data->blocksize); in php_mcrypt_filter()
94 mcrypt_generic(data->module, bucket->buf, bucket->buflen); in php_mcrypt_filter()
96 mdecrypt_generic(data->module, bucket->buf, bucket->buflen); in php_mcrypt_filter()
109 mcrypt_generic(data->module, data->block_buffer, data->blocksize); in php_mcrypt_filter()
111 mdecrypt_generic(data->module, data->block_buffer, data->blocksize); in php_mcrypt_filter()
136 mcrypt_generic_deinit(data->module); in php_mcrypt_filter_dtor()
137 mcrypt_module_close(data->module); in php_mcrypt_filter_dtor()
256 data->module = mcrypt_module; in php_mcrypt_filter_create()
H A Dmcrypt.c170 ZEND_ARG_INFO(0, module)
175 ZEND_ARG_INFO(0, module)
180 ZEND_ARG_INFO(0, module)
889 if (mcrypt_module_self_test(module, dir) == 0) { in PHP_FUNCTION()
917 if (mcrypt_module_is_block_algorithm(module, dir) == 1) { in PHP_FUNCTION()
931 if (mcrypt_module_is_block_mode(module, dir) == 1) { in PHP_FUNCTION()
955 RETURN_LONG(mcrypt_module_get_algo_key_size(module, dir)); in PHP_FUNCTION()
1037 char *module; in PHP_FUNCTION() local
1046 &cipher, &cipher_len, &module, &module_len) == FAILURE) { in PHP_FUNCTION()
1066 char *module; in PHP_FUNCTION() local
[all …]
/PHP-5.6/ext/xmlrpc/libxmlrpc/
H A DREADME3 <module>.h -- public API and data types
4 <module>_private.h -- protected API and data types
5 <module>.c -- implementation and private API / types
/PHP-5.6/Zend/
H A Dzend_API.h116 #define ZEND_MODULE_STARTUP_N(module) zm_startup_##module argument
117 #define ZEND_MODULE_SHUTDOWN_N(module) zm_shutdown_##module argument
118 #define ZEND_MODULE_ACTIVATE_N(module) zm_activate_##module argument
119 #define ZEND_MODULE_DEACTIVATE_N(module) zm_deactivate_##module argument
120 #define ZEND_MODULE_POST_ZEND_DEACTIVATE_N(module) zm_post_zend_deactivate_##module argument
121 #define ZEND_MODULE_INFO_N(module) zm_info_##module argument
122 #define ZEND_MODULE_GLOBALS_CTOR_N(module) zm_globals_ctor_##module argument
123 #define ZEND_MODULE_GLOBALS_DTOR_N(module) zm_globals_dtor_##module argument
126 #define ZEND_MODULE_STARTUP_D(module) int ZEND_MODULE_STARTUP_N(module)(INIT_FUNC_ARGS) argument
132 #define ZEND_MODULE_GLOBALS_CTOR_D(module) void ZEND_MODULE_GLOBALS_CTOR_N(module)(zend_##module##… argument
[all …]
H A Dzend_API.c1788 …ts_allocate_id(module->globals_id_ptr, module->globals_size, (ts_allocate_ctor) module->globals_ct… in zend_startup_module_ex()
1791 module->globals_ctor(module->globals_ptr TSRMLS_CC); in zend_startup_module_ex()
1797 if (module->module_startup_func(module->type, module->module_number TSRMLS_CC)==FAILURE) { in zend_startup_module_ex()
1949 if (!module) { in zend_register_module_ex()
1997 return module; in zend_register_module_ex()
2417 if (module->module_started && module->module_shutdown_func) { in module_destructor()
2421 module->module_shutdown_func(module->type, module->module_number TSRMLS_CC); in module_destructor()
2432 module->globals_dtor(module->globals_ptr TSRMLS_CC); in module_destructor()
2459 if (module->request_startup_func(module->type, module->module_number TSRMLS_CC)==FAILURE) { in zend_activate_modules()
2475 module->request_shutdown_func(module->type, module->module_number TSRMLS_CC); in module_registry_cleanup()
[all …]
H A Dzend_modules.h127 void module_destructor(zend_module_entry *module);
128 int module_registry_cleanup(zend_module_entry *module TSRMLS_DC);
129 int module_registry_request_startup(zend_module_entry *module TSRMLS_DC);
130 int module_registry_unload_temp(const zend_module_entry *module TSRMLS_DC);
/PHP-5.6/sapi/roxen/
H A Dconfig.m46 [ --with-roxen=DIR Build PHP as a Pike module. DIR is the base Roxen
9 PHP_ARG_ENABLE(roxen-zts, whether Roxen module is build using ZTS,
10 [ --enable-roxen-zts ROXEN: Build the Roxen module using Zend Thread Safety], no, no)
30 AC_MSG_ERROR([Failed to figure out Pike module and include directories])
43 Pike module directory: $PIKE_MODULE_DIR"
H A DREADME4 The module is now thread safe, in a couple of different modes. First
6 module. This means that all PHP-requests are serialized (ie only one
16 Support for this module is lacking. Please contact Roxen Internet
/PHP-5.6/sapi/aolserver/
H A DREADME3 To compile PHP 4.0 as a module for AOLserver, you need:
8 NOTE: You should not use this module in production. PHP is not 100% stable
43 ns_section "ns/server/${servername}/module/php"
48 the PHP module (can be specified multiple times). Example:
59 Then enable the PHP module:
/PHP-5.6/ext/pspell/
H A DREADME1 README file for pspell (spellchecker) module for PHP
8 This module was developed and tested with aspell-.31.1 and pspell-.11.0.2,
16 working with the aspell module for php. This is due to the fact that the
18 in the future rather than to aspell. That's exactly what this module is for.
20 added). I did not want to modify existing aspell module, because it would
22 Rather, I wrote a new module - pspell.
/PHP-5.6/
H A DREADME.SELF-CONTAINED-EXTENSIONS11 - Source code for your module
45 It is time to finish the module. Run:
59 The MySQL module will either use the embedded MySQL client
102 plan to distribute your module with PHP, these facilities allow you
103 to integrate your module easily into the main PHP module framework.
113 modules, use a simple module as a starting point and add your own code.
141 as a shared module. I will explain now how you can add shared module
142 support to an existing module called foo.
/PHP-5.6/ext/mysqlnd/
H A Dmysqlnd_reverse_api.c63 zend_hash_add(&mysqlnd_api_ext_ht, apiext->module->name, strlen(apiext->module->name) + 1, &apiext, in mysqlnd_reverse_api_register_api()
/PHP-5.6/sapi/webjames/
H A DREADME1 README for WebJames SAPI module
4 This is a SAPI module for the WebJames HTTP server, which runs on the
/PHP-5.6/ext/standard/
H A Dcredits.c26 #define CREDIT_LINE(module, authors) php_info_print_table_row(2, module, authors) argument
/PHP-5.6/sapi/pi3web/
H A DREADME3 This module requires PHP5 as thread safe shared library. Have a look
12 build PHP5 as Pi3Web module and after that build the Pi3Web PHP5 wrapper:
21 You must also checkout the TSRM and the ZEND module from the ZEND cvs tree
/PHP-5.6/sapi/tux/
H A DREADME4 This is a SAPI module for the TUX web-server by Ingo Molnar.
12 All requests to the PHP userspace module are currently serialized.
14 This module is of alpha quality. Due to incomplete APIs, HTTP
61 userspace module php5.tux.

Completed in 58 milliseconds

123456