my_function       127 Zend/zend_closures.c 	zend_function my_function;
my_function       161 Zend/zend_closures.c 		memcpy(&my_function, fci_cache.function_handler, fci_cache.function_handler->type == ZEND_USER_FUNCTION ? sizeof(zend_op_array) : sizeof(zend_internal_function));
my_function       163 Zend/zend_closures.c 		my_function.common.scope = Z_OBJCE_P(newthis);
my_function       164 Zend/zend_closures.c 		fci_cache.function_handler = &my_function;
my_function       167 Zend/zend_closures.c 		if (ZEND_USER_CODE(my_function.type) && closure->func.common.scope != Z_OBJCE_P(newthis)) {
my_function       168 Zend/zend_closures.c 			my_function.op_array.run_time_cache = emalloc(my_function.op_array.cache_size);
my_function       169 Zend/zend_closures.c 			memset(my_function.op_array.run_time_cache, 0, my_function.op_array.cache_size);
my_function       180 Zend/zend_closures.c 	} else if (ZEND_USER_CODE(my_function.type) && closure->func.common.scope != Z_OBJCE_P(newthis)) {
my_function       181 Zend/zend_closures.c 		efree(my_function.op_array.run_time_cache);