| /PHP_5_5/ext/openssl/ |
| H A D | openssl.mak | 147 # Two functions imported to build the openssl extension
|
| /PHP_5_5/ext/phar/phar/ |
| H A D | pharcommand.inc | 18 * in order to retrieve and execute phar functions.
|
| /PHP_5_5/ext/skeleton/ |
| H A D | skeleton.php | 8 $functions = get_extension_funcs($module); variable 10 foreach($functions as $func) {
|
| /PHP_5_5/ext/standard/tests/file/ |
| H A D | file.inc | 2 /* Header file for common file test functions 3 Following functions are provided :
|
| /PHP_5_5/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_5/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_5/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 */ 1946 if (module->functions && zend_register_functions(NULL, module->functions, NULL, module->type TSRMLS_CC)==FAILURE) { 1948 zend_error(E_CORE_WARNING,"%s: Unable to register functions, unable to load", module->name); 2026 /* registers all functions in *library_functions in the function hash */ 2027 ZEND_API int zend_register_functions(zend_class_entry *scope, const zend_function_entry *functions, HashTable *function_table, int type TSRMLS_DC) /* {{{ */ argument 2029 const zend_function_entry *ptr = functions; 2113 /* Since here we are handling internal functions only we can add the keyword flag. */ 2132 zend_unregister_functions(functions, count, target_function_table TSRMLS_CC); 2202 zend_unregister_functions(functions, coun 2288 zend_unregister_functions(const zend_function_entry *functions, int count, HashTable *function_table TSRMLS_DC) argument [all...] |
| H A D | zend_builtin_functions.c | 1738 Returns an array of all defined functions */ 1761 zend_error(E_WARNING, "Cannot add internal functions to return value from get_defined_functions()"); 1768 zend_error(E_WARNING, "Cannot add user functions to return value from get_defined_functions()"); 2434 Returns an array with the names of functions belonging to the named extension */ 2455 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_5/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) 1332 Returns list of defined functions */ 1380 /* {{{ proto void SoapServer::addFunction(mixed functions) 1381 Adds one or several functions those will handle SOAP requests */ 2315 /* SoapClient functions */ 2943 Returns list of SOAP functions */ 2960 zend_hash_internal_pointer_reset_ex(&sdl->functions, &pos); 2961 while (zend_hash_get_current_data_ex(&sdl->functions, (void **)&function, &pos) != FAILURE) { 2965 zend_hash_move_forward_ex(&sdl->functions, [all...] |
| /PHP_5_5/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_5/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); 401 zend_llist_init(&extension_lists.functions, sizeof(char *), (llist_dtor_func_t) free_estring, 1); 727 zend_llist_apply(&extension_lists.functions, php_load_php_extension_cb TSRMLS_CC); 730 zend_llist_destroy(&extension_lists.functions);
|
| /PHP_5_5/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"); 5274 if (module->functions) { 5277 const zend_function_entry *func = module->functions;
|
| /PHP_5_5/ext/standard/ |
| H A D | info.c | 760 const zend_multibyte_functions *functions = zend_multibyte_get_functions(TSRMLS_C); local 762 if (functions) { 763 spprintf(&descr, 0, "provided by %s", functions->provider_name);
|
| H A D | dl.c | 188 zend_function_entry *functions; member in struct:pre_4_1_0_module_entry
|