| /PHP_5_5/Zend/ |
| H A D | zend_globals.h | 57 /* excpt.h on Digital Unix 4.0 defines function_table */ 58 #undef function_table macro 94 HashTable *function_table; /* function symbol table */ member in struct:_zend_compiler_globals 190 HashTable *function_table; /* function symbol table */ member in struct:_zend_executor_globals
|
| H A D | zend.h | 428 /* excpt.h on Digital Unix 4.0 defines function_table */ 429 #undef function_table macro 484 HashTable function_table; member in struct:_zend_class_entry
|
| H A D | zend_interfaces.c | 40 HashTable *function_table; local 48 /*fci.function_table = NULL; will be read form zend_class_entry of object if needed */ 61 fci.function_table = !object_pp ? EG(function_table) : NULL; 71 function_table = &obj_ce->function_table; 73 function_table = EG(function_table); 76 if (zend_hash_find(function_table, function_name, function_name_len+1, (void **) &fcic.function_handler) == FAILURE) {
|
| H A D | zend_API.c | 2027 ZEND_API int zend_register_functions(zend_class_entry *scope, const zend_function_entry *functions, HashTable *function_table, int type TSRMLS_DC) /* {{{ */ argument 2033 HashTable *target_function_table = function_table; 2048 target_function_table = CG(function_table); 2288 ZEND_API void zend_unregister_functions(const zend_function_entry *functions, int count, HashTable *function_table TSRMLS_DC) /* {{{ */ 2292 HashTable *target_function_table = function_table; 2295 target_function_table = CG(function_table); 2504 zend_register_functions(class_entry, class_entry->info.internal.builtin_functions, &class_entry->function_table, MODULE_PERSISTENT TSRMLS_CC); 2626 if (zend_hash_del(CG(function_table), function_name, function_name_length+1)==FAILURE) { 2630 return zend_register_functions(NULL, disabled_function, CG(function_table), MODULE_PERSISTENT TSRMLS_CC); 2664 zend_hash_clean(&((*disabled_class)->function_table)); 4002 HashTable *function_table; local [all...] |
| H A D | zend_execute_API.c | 150 EG(function_table) = CG(function_table); 285 zend_hash_apply(EG(function_table), (apply_func_t) zend_cleanup_function_data_full TSRMLS_CC); 288 zend_hash_reverse_apply(EG(function_table), (apply_func_t) zend_cleanup_function_data TSRMLS_CC); 301 zend_hash_reverse_apply(EG(function_table), (apply_func_t) clean_non_persistent_function_full TSRMLS_CC); 304 zend_hash_reverse_apply(EG(function_table), (apply_func_t) clean_non_persistent_function TSRMLS_CC); 687 int call_user_function(HashTable *function_table, zval **object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[] TSRMLS_DC) /* {{{ */ argument 702 ex_retval = call_user_function_ex(function_table, object_pp, function_name, &local_retval_ptr, param_count, params_array, 1, NULL TSRMLS_CC); 715 int call_user_function_ex(HashTable *function_table, zval **object_pp, zval *function_name, zval **retval_ptr_ptr, zend_uint param_count, zval **params[], int no_separation, HashTable *symbol_table TSRMLS_DC) /* {{{ */ argument 720 fci.function_table [all...] |
| H A D | zend_compile.c | 1576 result = zend_hash_quick_add(&CG(active_class_entry)->function_table, lcname, name_len+1, INTERNED_HASH(lcname), &op_array, sizeof(zend_op_array), (void **) &CG(active_op_array)); 1578 result = zend_hash_add(&CG(active_class_entry)->function_table, lcname, name_len+1, &op_array, sizeof(zend_op_array), (void **) &CG(active_op_array)); 1722 zend_hash_quick_update(CG(function_table), Z_STRVAL(key), Z_STRLEN(key), Z_HASH_P(&CONSTANT(opline->op1.constant)), &op_array, sizeof(zend_op_array), (void **) &CG(active_op_array)); 1953 if ((zend_hash_find(CG(function_table), lcname, function_name->u.constant.value.str.len+1, (void **) &function)==FAILURE) || 3063 if (zend_hash_find(&ce->parent->function_table, ZEND_CONSTRUCTOR_FUNC_NAME, sizeof(ZEND_CONSTRUCTOR_FUNC_NAME), (void **)&function)==SUCCESS) { 3065 zend_hash_update(&ce->function_table, ZEND_CONSTRUCTOR_FUNC_NAME, sizeof(ZEND_CONSTRUCTOR_FUNC_NAME), function, sizeof(zend_function), (void**)&new_function); 3073 if (!zend_hash_exists(&ce->function_table, lc_class_name, ce->name_length+1)) { 3075 if (!zend_hash_exists(&ce->function_table, lc_parent_class_name, ce->parent->name_length+1) && 3076 zend_hash_find(&ce->parent->function_table, lc_parent_class_name, ce->parent->name_length+1, (void **)&function)==SUCCESS) { 3079 zend_hash_update(&ce->function_table, lc_parent_class_nam 4428 do_bind_function(const zend_op_array *op_array, zend_op *opline, HashTable *function_table, zend_bool compile_time) argument [all...] |
| H A D | zend_API.h | 45 HashTable *function_table; member in struct:_zend_fcall_info 265 ZEND_API int zend_register_functions(zend_class_entry *scope, const zend_function_entry *functions, HashTable *function_table, int type TSRMLS_DC); 266 ZEND_API void zend_unregister_functions(const zend_function_entry *functions, int count, HashTable *function_table TSRMLS_DC); 450 ZEND_API int call_user_function(HashTable *function_table, zval **object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[] TSRMLS_DC); 451 ZEND_API int call_user_function_ex(HashTable *function_table, zval **object_pp, zval *function_name, zval **retval_ptr_ptr, zend_uint param_count, zval **params[], int no_separation, HashTable *symbol_table TSRMLS_DC);
|
| /PHP_5_5/ext/opcache/ |
| H A D | ZendAccelerator.h | 179 HashTable function_table; member in struct:_zend_persistent_script 238 /* copy of CG(function_table) used for compilation scripts into cache */ 240 HashTable function_table; member in struct:_zend_accel_globals
|
| H A D | zend_accelerator_util_funcs.c | 70 ce->function_table.pDestructor = (dtor_func_t) zend_accel_destroy_zend_function; 79 zend_hash_init(&persistent_script->function_table, 100, NULL, (dtor_func_t) zend_accel_destroy_zend_function, 0); 92 persistent_script->function_table.pDestructor = (dtor_func_t)zend_accel_destroy_zend_function; 95 persistent_script->function_table.pDestructor = NULL; 99 zend_hash_destroy(&persistent_script->function_table); 129 HashTable *function_table = va_arg(args, HashTable *); local 136 zend_hash_quick_update(function_table, hash_key->arKey, hash_key->nKeyLength, hash_key->h, function, sizeof(zend_function), NULL); 156 static int copy_internal_function(zend_function *function, HashTable *function_table TSRMLS_DC) 159 zend_hash_update(function_table, function->common.function_name, strlen(function->common.function_name) + 1, function, sizeof(zend_function), NULL); 166 zend_hash_apply_with_argument(CG(function_table), (apply_func_arg_ [all...] |
| /PHP_5_5/ext/soap/ |
| H A D | soap.c | 917 fci.function_table = &Z_OBJCE_P(getThis())->function_table; 1348 ft = &(Z_OBJCE_P(service->soap_object)->function_table); 1350 ft = &service->soap_class.ce->function_table; 1352 ft = EG(function_table); 1423 if (zend_hash_find(EG(function_table), key, key_len+1, (void**)&f) == FAILURE) { 1445 if (zend_hash_find(EG(function_table), key, key_len+1, (void**)&f) == FAILURE) { 1490 HashTable *function_table; local 1530 if (call_user_function(EG(function_table), NULL, &readfile, &readfile_ret, 1, ¶m TSRMLS_CC) == FAILURE) { 1580 zend_hash_exists(EG(function_table), "gzinflat [all...] |