current_import    206 Zend/zend_compile.c 	CG(current_import) = NULL;
current_import   2157 Zend/zend_compile.c 	if (compound && CG(current_import)) {
current_import   2162 Zend/zend_compile.c 		if (zend_hash_find(CG(current_import), lookup_name, len+1, (void**)&ns) == SUCCESS) {
current_import   2286 Zend/zend_compile.c 			if (CG(current_import)) {
current_import   2290 Zend/zend_compile.c 				if (zend_hash_find(CG(current_import), lcname, len+1, (void**)&ns) == SUCCESS) {
current_import   2314 Zend/zend_compile.c 	} else if (CG(current_import) || CG(current_namespace)) {
current_import   2318 Zend/zend_compile.c 		if (CG(current_import) &&
current_import   2319 Zend/zend_compile.c 		    zend_hash_find(CG(current_import), lcname, Z_STRLEN(class_name->u.constant)+1, (void**)&ns) == SUCCESS) {
current_import   5145 Zend/zend_compile.c 	if (CG(current_import) &&
current_import   5146 Zend/zend_compile.c 	    zend_hash_find(CG(current_import), lcname, Z_STRLEN(class_name->u.constant)+1, (void**)&ns_name) == SUCCESS) {
current_import   7129 Zend/zend_compile.c 	if (CG(current_import)) {
current_import   7130 Zend/zend_compile.c 		zend_hash_destroy(CG(current_import));
current_import   7131 Zend/zend_compile.c 		efree(CG(current_import));
current_import   7132 Zend/zend_compile.c 		CG(current_import) = NULL;
current_import   7162 Zend/zend_compile.c 	if (!CG(current_import)) {
current_import   7163 Zend/zend_compile.c 		CG(current_import) = emalloc(sizeof(HashTable));
current_import   7164 Zend/zend_compile.c 		zend_hash_init(CG(current_import), 0, NULL, ZVAL_PTR_DTOR, 0);
current_import   7224 Zend/zend_compile.c 	if (zend_hash_add(CG(current_import), lcname, Z_STRLEN_P(name)+1, &ns, sizeof(zval*), NULL) != SUCCESS) {
current_import   7404 Zend/zend_compile.c 	if (CG(current_import)) {
current_import   7405 Zend/zend_compile.c 		zend_hash_destroy(CG(current_import));
current_import   7406 Zend/zend_compile.c 		efree(CG(current_import));
current_import   7407 Zend/zend_compile.c 		CG(current_import) = NULL;
current_import    133 Zend/zend_globals.h 	HashTable *current_import;