Searched defs:functions (Results 1 - 9 of 9) sorted by relevance
| /PHP_5_3/ext/skeleton/ |
| H A D | skeleton.php | 8 $functions = get_extension_funcs($module); variable 10 foreach($functions as $func) {
|
| /PHP_5_3/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_3/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_3/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
|
| /PHP_5_3/ext/standard/ |
| H A D | dl.c | 186 zend_function_entry *functions; member in struct:pre_4_1_0_module_entry
|
| /PHP_5_3/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); 385 zend_llist_init(&extension_lists.functions, sizeof(char *), (llist_dtor_func_t) free_estring, 1); 751 zend_llist_apply(&extension_lists.functions, php_load_php_extension_cb TSRMLS_CC); 754 zend_llist_destroy(&extension_lists.functions);
|
| /PHP_5_3/Zend/ |
| H A D | zend_API.c | 113 /* Zend-optimized Extended functions */ 1718 if (module->functions && zend_register_functions(NULL, module->functions, NULL, module->type TSRMLS_CC)==FAILURE) { 1720 zend_error(E_CORE_WARNING,"%s: Unable to register functions, unable to load", module->name); 1798 /* registers all functions in *library_functions in the function hash */ 1799 ZEND_API int zend_register_functions(zend_class_entry *scope, const zend_function_entry *functions, HashTable *function_table, int type TSRMLS_DC) /* {{{ */ argument 1801 const zend_function_entry *ptr = functions; 1877 /* Since here we are handling internal functions only we can add the keyword flag. */ 1896 zend_unregister_functions(functions, count, target_function_table TSRMLS_CC); 1961 zend_unregister_functions(functions, coun 2047 zend_unregister_functions(const zend_function_entry *functions, int count, HashTable *function_table TSRMLS_DC) argument [all...] |
| H A D | zend_modules.h | 81 const struct _zend_function_entry *functions; member in struct:_zend_module_entry
|
Completed in 16 milliseconds