| /PHP_5_4/ext/openssl/ |
| H A D | openssl.mak | 147 # Two functions imported to build the openssl extension
|
| /PHP_5_4/ext/phar/phar/ |
| H A D | pharcommand.inc | 18 * in order to retrieve and execute phar functions.
|
| /PHP_5_4/ext/skeleton/ |
| H A D | skeleton.php | 8 $functions = get_extension_funcs($module); variable 10 foreach($functions as $func) {
|
| /PHP_5_4/ext/standard/tests/file/ |
| H A D | file.inc | 2 /* Header file for common file test functions 3 Following functions are provided :
|
| /PHP_5_4/scripts/dev/ |
| H A D | find_tested.php | 8 Outputs test coverage information for functions and methods in csv format. 9 Supplying an optional extension name outputs only information for functions and methods from that extension. 117 // get functions 205 $functions = array_filter($tokens, 'filter_functions'); variable 206 $functions = array_map( 'map_token_value',$functions); variable 207 $functions = array_unique($functions); variable 209 return $functions;
|
| /PHP_5_4/scripts/dev/generate-phpt/src/setup/preconditions/ |
| H A D | gtIsValidFunction.php | 12 $functions = get_defined_functions(); variable 13 if( in_array( $function, $functions['internal'] ) ) {
|
| /PHP_5_4/Zend/ |
| H A D | zend_modules.h | 81 const struct _zend_function_entry *functions; member in struct:_zend_module_entry
|
| H A D | zend_multibyte.c | 88 ZEND_API int zend_multibyte_set_functions(const zend_multibyte_functions *functions TSRMLS_DC) 90 zend_multibyte_encoding_utf32be = functions->encoding_fetcher("UTF-32BE" TSRMLS_CC); 94 zend_multibyte_encoding_utf32le = functions->encoding_fetcher("UTF-32LE" TSRMLS_CC); 98 zend_multibyte_encoding_utf16be = functions->encoding_fetcher("UTF-16BE" TSRMLS_CC); 102 zend_multibyte_encoding_utf16le = functions->encoding_fetcher("UTF-16LE" TSRMLS_CC); 106 zend_multibyte_encoding_utf8 = functions->encoding_fetcher("UTF-8" TSRMLS_CC); 111 multibyte_functions = *functions;
|
| H A D | zend_multibyte.h | 61 /* multibyte utility functions */ 62 ZEND_API int zend_multibyte_set_functions(const zend_multibyte_functions *functions TSRMLS_DC);
|
| H A D | zend_API.c | 119 /* Zend-optimized Extended functions */ 1883 if (module->functions && zend_register_functions(NULL, module->functions, NULL, module->type TSRMLS_CC)==FAILURE) { 1885 zend_error(E_CORE_WARNING,"%s: Unable to register functions, unable to load", module->name); 1963 /* registers all functions in *library_functions in the function hash */ 1964 ZEND_API int zend_register_functions(zend_class_entry *scope, const zend_function_entry *functions, HashTable *function_table, int type TSRMLS_DC) /* {{{ */ argument 1966 const zend_function_entry *ptr = functions; 2050 /* Since here we are handling internal functions only we can add the keyword flag. */ 2069 zend_unregister_functions(functions, count, target_function_table TSRMLS_CC); 2139 zend_unregister_functions(functions, coun 2225 zend_unregister_functions(const zend_function_entry *functions, int count, HashTable *function_table TSRMLS_DC) argument [all...] |
| H A D | zend_builtin_functions.c | 1753 Returns an array of all defined functions */ 1776 zend_error(E_WARNING, "Cannot add internal functions to return value from get_defined_functions()"); 1783 zend_error(E_WARNING, "Cannot add user functions to return value from get_defined_functions()"); 2449 Returns an array with the names of functions belonging to the named extension */ 2470 if (!(func = module->functions)) {
|
| H A D | zend_API.h | 163 #define INIT_CLASS_ENTRY(class_container, class_name, functions) \ 164 INIT_OVERLOADED_CLASS_ENTRY(class_container, class_name, functions, NULL, NULL, NULL) 166 #define INIT_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions) \ 167 INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions, NULL, NULL, NULL, NULL, NULL) 169 #define INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions, handle_fcall, handle_propget, handle_propset, handle_propunset, handle_propisset) \ 178 INIT_CLASS_ENTRY_INIT_METHODS(class_container, functions, handle_fcall, handle_propget, handle_propset, handle_propunset, handle_propisset) \ 181 #define INIT_CLASS_ENTRY_INIT_METHODS(class_container, functions, handle_fcall, handle_propget, handle_propset, handle_propunset, handle_propisset) \ 212 class_container.info.internal.builtin_functions = functions; \ 215 #define INIT_OVERLOADED_CLASS_ENTRY(class_container, class_name, functions, handle_fcall, handle_propget, handle_propset) \ 216 INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, class_name, sizeof(class_name)-1, functions, handle_fcal [all...] |
| /PHP_5_4/ext/soap/ |
| H A D | php_sdl.c | 740 zend_hash_init(&ctx.sdl->functions, 0, NULL, delete_function, 0); 1137 if (zend_hash_add(&ctx.sdl->functions, php_strtolower(tmp, len), len+1, &function, sizeof(sdlFunctionPtr), NULL) != SUCCESS) { 1138 zend_hash_next_index_insert(&ctx.sdl->functions, &function, sizeof(sdlFunctionPtr), NULL); 1538 sdlFunctionPtr *functions = NULL; local 1692 /* deserialize functions */ 1694 zend_hash_init(&sdl->functions, num_func, NULL, delete_function, 0); 1696 functions = safe_emalloc(num_func, sizeof(sdlFunctionPtr), 0); 1700 sdl_deserialize_key(&sdl->functions, func, &in); 1757 functions[i] = func; 1770 sdl_deserialize_key(sdl->requests, functions[function_nu [all...] |
| H A D | php_sdl.h | 55 HashTable functions; /* array of sdlFunction */ member in struct:_sdl
|
| H A D | soap.c | 48 /* Local functions */ 315 ZEND_ARG_INFO(0, functions) 1326 Returns list of defined functions */ 1374 /* {{{ proto void SoapServer::addFunction(mixed functions) 1375 Adds one or several functions those will handle SOAP requests */ 2309 /* SoapClient functions */ 2932 Returns list of SOAP functions */ 2949 zend_hash_internal_pointer_reset_ex(&sdl->functions, &pos); 2950 while (zend_hash_get_current_data_ex(&sdl->functions, (void **)&function, &pos) != FAILURE) { 2954 zend_hash_move_forward_ex(&sdl->functions, [all...] |
| /PHP_5_4/ext/spl/ |
| H A D | spl_functions.c | 31 void spl_register_interface(zend_class_entry ** ppce, char * class_name, const zend_function_entry * functions TSRMLS_DC) 35 INIT_CLASS_ENTRY_EX(ce, class_name, strlen(class_name), functions);
|
| H A D | spl_functions.h | 54 void spl_register_interface(zend_class_entry ** ppce, char * class_name, const zend_function_entry *functions TSRMLS_DC);
|
| /PHP_5_4/ext/standard/ |
| H A D | dl.c | 183 zend_function_entry *functions; member in struct:pre_4_1_0_module_entry
|
| H A D | info.c | 759 const zend_multibyte_functions *functions = zend_multibyte_get_functions(TSRMLS_C); local 761 if (functions) { 762 spprintf(&descr, 0, "provided by %s", functions->provider_name);
|
| /PHP_5_4/main/ |
| H A D | php_ini.c | 61 zend_llist functions; member in struct:_php_extension_lists 232 zend_llist_add_element(&extension_lists.functions, &extension_name); 384 zend_llist_init(&extension_lists.functions, sizeof(char *), (llist_dtor_func_t) free_estring, 1); 710 zend_llist_apply(&extension_lists.functions, php_load_php_extension_cb TSRMLS_CC); 713 zend_llist_destroy(&extension_lists.functions);
|
| /PHP_5_4/ext/reflection/ |
| H A D | php_reflection.c | 114 /* {{{ Smart string functions */ 1108 if (module->functions && module->functions->fname) { 1110 const zend_function_entry *func = module->functions; 1477 zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Cannot determine default value for internal functions"); 5252 if (module->functions) { 5255 const zend_function_entry *func = module->functions;
|