current_import_function  207 Zend/zend_compile.c 	CG(current_import_function) = NULL;
current_import_function 1729 Zend/zend_compile.c 		if (CG(current_import_function) &&
current_import_function 1730 Zend/zend_compile.c 		    zend_hash_find(CG(current_import_function), lcname, Z_STRLEN(function_name->u.constant)+1, (void**)&ns_name) == SUCCESS) {
current_import_function 2194 Zend/zend_compile.c 	zend_resolve_non_class_name(element_name, check_namespace, 0, CG(current_import_function) TSRMLS_CC);
current_import_function 7135 Zend/zend_compile.c 	if (CG(current_import_function)) {
current_import_function 7136 Zend/zend_compile.c 		zend_hash_destroy(CG(current_import_function));
current_import_function 7137 Zend/zend_compile.c 		efree(CG(current_import_function));
current_import_function 7138 Zend/zend_compile.c 		CG(current_import_function) = NULL;
current_import_function 7325 Zend/zend_compile.c 	if (!CG(current_import_function)) {
current_import_function 7326 Zend/zend_compile.c 		CG(current_import_function) = emalloc(sizeof(HashTable));
current_import_function 7327 Zend/zend_compile.c 		zend_hash_init(CG(current_import_function), 0, NULL, ZVAL_PTR_DTOR, 0);
current_import_function 7330 Zend/zend_compile.c 	zend_do_use_non_class(ns_name, new_name, 1, 0, CG(current_import_function), CG(function_table) TSRMLS_CC);
current_import_function 7409 Zend/zend_compile.c 	if (CG(current_import_function)) {
current_import_function 7410 Zend/zend_compile.c 		zend_hash_destroy(CG(current_import_function));
current_import_function 7411 Zend/zend_compile.c 		efree(CG(current_import_function));
current_import_function 7412 Zend/zend_compile.c 		CG(current_import_function) = NULL;
current_import_function  134 Zend/zend_globals.h 	HashTable *current_import_function;