Lines Matching refs:function_table

70 	ce->function_table.pDestructor = (dtor_func_t) zend_accel_destroy_zend_function;  in zend_accel_destroy_zend_class()
79 …zend_hash_init(&persistent_script->function_table, 100, NULL, (dtor_func_t) zend_accel_destroy_zen… in create_persistent_script()
132 return compact_hash_table(&persistent_script->function_table) && in compact_persistent_script()
139 persistent_script->function_table.pDestructor = (dtor_func_t)zend_accel_destroy_zend_function; in free_persistent_script()
142 persistent_script->function_table.pDestructor = NULL; in free_persistent_script()
146 zend_hash_destroy(&persistent_script->function_table); in free_persistent_script()
176 HashTable *function_table = va_arg(args, HashTable *); in move_user_function() local
183 …zend_hash_quick_update(function_table, hash_key->arKey, hash_key->nKeyLength, hash_key->h, functio… in move_user_function()
203 static int copy_internal_function(zend_function *function, HashTable *function_table TSRMLS_DC) in copy_internal_function()
206 …zend_hash_update(function_table, function->common.function_name, strlen(function->common.function_… in copy_internal_function()
213 …zend_hash_apply_with_argument(CG(function_table), (apply_func_arg_t)copy_internal_function, &ZCG(f… in zend_accel_copy_internal_functions()
214 ZCG(internal_functions_count) = zend_hash_num_elements(&ZCG(function_table)); in zend_accel_copy_internal_functions()
664 zend_hash_clone_methods(&ce->function_table, &old_ce->function_table, old_ce, ce TSRMLS_CC);
947 if (zend_hash_num_elements(&persistent_script->function_table) > 0) {
948 …zend_accel_function_hash_copy(CG(function_table), &persistent_script->function_table, (unique_copy…
976 if (zend_hash_num_elements(&persistent_script->function_table) > 0) {
977 zend_accel_function_hash_copy(CG(function_table), &persistent_script->function_table, NULL);