/PHP-5.5/sapi/fpm/fpm/ |
H A D | fpm_events.c | 171 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.5/ext/skeleton/ |
H A D | skeleton.php | 7 $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.5/ext/session/tests/ |
H A D | session_module_name_error.phpt | 11 * 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 D | session_module_name_variation1.phpt | 11 * 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 D | bug65475.phpt | 12 echo "Testing file module".PHP_EOL; 30 Testing file module
|
H A D | session_module_name_basic.phpt | 11 * Prototype : string session_module_name([string $module]) 12 * Description : Get and/or set the current session module
|
H A D | session_module_name_variation2.phpt | 11 * Prototype : string session_module_name([string $module]) 12 * Description : Get and/or set the current session module
|
H A D | session_module_name_variation4.phpt | 15 * Prototype : string session_module_name([string $module]) 16 * Description : Get and/or set the current session module
|
/PHP-5.5/ext/mcrypt/ |
H A D | mcrypt_filter.c | 28 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 D | mcrypt.c | 169 ZEND_ARG_INFO(0, module) 174 ZEND_ARG_INFO(0, module) 179 ZEND_ARG_INFO(0, module) 920 if (mcrypt_module_self_test(module, dir) == 0) { in PHP_FUNCTION() 948 if (mcrypt_module_is_block_algorithm(module, dir) == 1) { in PHP_FUNCTION() 962 if (mcrypt_module_is_block_mode(module, dir) == 1) { in PHP_FUNCTION() 986 RETURN_LONG(mcrypt_module_get_algo_key_size(module, dir)); in PHP_FUNCTION() 1068 char *module; in PHP_FUNCTION() local 1077 &cipher, &cipher_len, &module, &module_len) == FAILURE) { in PHP_FUNCTION() 1097 char *module; in PHP_FUNCTION() local [all …]
|
/PHP-5.5/ext/xmlrpc/libxmlrpc/ |
H A D | README | 3 <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.5/Zend/ |
H A D | zend_API.h | 114 #define ZEND_MODULE_STARTUP_N(module) zm_startup_##module argument 115 #define ZEND_MODULE_SHUTDOWN_N(module) zm_shutdown_##module argument 116 #define ZEND_MODULE_ACTIVATE_N(module) zm_activate_##module argument 117 #define ZEND_MODULE_DEACTIVATE_N(module) zm_deactivate_##module argument 118 #define ZEND_MODULE_POST_ZEND_DEACTIVATE_N(module) zm_post_zend_deactivate_##module argument 119 #define ZEND_MODULE_INFO_N(module) zm_info_##module argument 120 #define ZEND_MODULE_GLOBALS_CTOR_N(module) zm_globals_ctor_##module argument 121 #define ZEND_MODULE_GLOBALS_DTOR_N(module) zm_globals_dtor_##module argument 124 #define ZEND_MODULE_STARTUP_D(module) int ZEND_MODULE_STARTUP_N(module)(INIT_FUNC_ARGS) argument 130 #define ZEND_MODULE_GLOBALS_CTOR_D(module) void ZEND_MODULE_GLOBALS_CTOR_N(module)(zend_##module##… argument [all …]
|
H A D | zend_API.c | 1750 …ts_allocate_id(module->globals_id_ptr, module->globals_size, (ts_allocate_ctor) module->globals_ct… in zend_startup_module_ex() 1753 module->globals_ctor(module->globals_ptr TSRMLS_CC); in zend_startup_module_ex() 1759 if (module->module_startup_func(module->type, module->module_number TSRMLS_CC)==FAILURE) { in zend_startup_module_ex() 1905 if (!module) { in zend_register_module_ex() 1953 return module; in zend_register_module_ex() 2356 if (module->module_started && module->module_shutdown_func) { in module_destructor() 2360 module->module_shutdown_func(module->type, module->module_number TSRMLS_CC); in module_destructor() 2371 module->globals_dtor(module->globals_ptr TSRMLS_CC); in module_destructor() 2398 if (module->request_startup_func(module->type, module->module_number TSRMLS_CC)==FAILURE) { in zend_activate_modules() 2414 module->request_shutdown_func(module->type, module->module_number TSRMLS_CC); in module_registry_cleanup() [all …]
|
H A D | zend_modules.h | 127 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.5/sapi/roxen/ |
H A D | config.m4 | 6 [ --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 D | README | 4 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.5/sapi/aolserver/ |
H A D | README | 3 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.5/ext/pspell/ |
H A D | README | 1 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.5/ |
H A D | README.SELF-CONTAINED-EXTENSIONS | 11 - 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.
|
H A D | README.EXTENSIONS | 1 This file describes extension module API details. Refer to 9 Between PHP 4.0.6 and 4.1.0, the Zend module struct changed in a way 13 If this was your old module entry:
|
/PHP-5.5/ext/mysqlnd/ |
H A D | mysqlnd_reverse_api.c | 63 zend_hash_add(&mysqlnd_api_ext_ht, apiext->module->name, strlen(apiext->module->name) + 1, &apiext, in mysqlnd_reverse_api_register_api()
|
/PHP-5.5/sapi/webjames/ |
H A D | README | 1 README for WebJames SAPI module 4 This is a SAPI module for the WebJames HTTP server, which runs on the
|
/PHP-5.5/ext/standard/ |
H A D | credits.c | 26 #define CREDIT_LINE(module, authors) php_info_print_table_row(2, module, authors) argument
|
/PHP-5.5/sapi/pi3web/ |
H A D | README | 3 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.5/sapi/tux/ |
H A D | README | 4 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.
|