Lines Matching refs:function_table

66 	ce->function_table.pDestructor = zend_accel_destroy_zend_function;  in zend_accel_destroy_zend_class()
75 zend_hash_init(&persistent_script->function_table, 128, NULL, ZEND_FUNCTION_DTOR, 0); in create_persistent_script()
88 persistent_script->function_table.pDestructor = zend_accel_destroy_zend_function; in free_persistent_script()
91 persistent_script->function_table.pDestructor = NULL; in free_persistent_script()
95 zend_hash_destroy(&persistent_script->function_table); in free_persistent_script()
140 static int copy_internal_function(zval *zv, HashTable *function_table) in copy_internal_function() argument
144 …zend_hash_update_mem(function_table, function->function_name, function, sizeof(zend_internal_funct… in copy_internal_function()
151 …zend_hash_apply_with_argument(CG(function_table), (apply_func_arg_t)copy_internal_function, &ZCG(f… in zend_accel_copy_internal_functions()
152 ZCG(internal_functions_count) = zend_hash_num_elements(&ZCG(function_table)); in zend_accel_copy_internal_functions()
411 zend_hash_clone_methods(&ce->function_table, &old_ce->function_table, old_ce, ce); in zend_class_copy_ctor()
709 if (zend_hash_num_elements(&persistent_script->function_table) > 0) { in zend_accel_load_script()
710 zend_accel_function_hash_copy_from_shm(CG(function_table), &persistent_script->function_table); in zend_accel_load_script()
729 if (zend_hash_num_elements(&persistent_script->function_table) > 0) { in zend_accel_load_script()
730 zend_accel_function_hash_copy(CG(function_table), &persistent_script->function_table); in zend_accel_load_script()