current_import_const  208 Zend/zend_compile.c 	CG(current_import_const) = NULL;
current_import_const 2200 Zend/zend_compile.c 	zend_resolve_non_class_name(element_name, check_namespace, 1, CG(current_import_const) TSRMLS_CC);
current_import_const 7141 Zend/zend_compile.c 	if (CG(current_import_const)) {
current_import_const 7142 Zend/zend_compile.c 		zend_hash_destroy(CG(current_import_const));
current_import_const 7143 Zend/zend_compile.c 		efree(CG(current_import_const));
current_import_const 7144 Zend/zend_compile.c 		CG(current_import_const) = NULL;
current_import_const 7336 Zend/zend_compile.c 	if (!CG(current_import_const)) {
current_import_const 7337 Zend/zend_compile.c 		CG(current_import_const) = emalloc(sizeof(HashTable));
current_import_const 7338 Zend/zend_compile.c 		zend_hash_init(CG(current_import_const), 0, NULL, ZVAL_PTR_DTOR, 0);
current_import_const 7341 Zend/zend_compile.c 	zend_do_use_non_class(ns_name, new_name, 0, 1, CG(current_import_const), &CG(const_filenames) TSRMLS_CC);
current_import_const 7366 Zend/zend_compile.c 	if (CG(current_import_const) &&
current_import_const 7367 Zend/zend_compile.c 	    zend_hash_find(CG(current_import_const), Z_STRVAL(name->u.constant), Z_STRLEN(name->u.constant)+1, (void**)&ns_name) == SUCCESS) {
current_import_const 7414 Zend/zend_compile.c 	if (CG(current_import_const)) {
current_import_const 7415 Zend/zend_compile.c 		zend_hash_destroy(CG(current_import_const));
current_import_const 7416 Zend/zend_compile.c 		efree(CG(current_import_const));
current_import_const 7417 Zend/zend_compile.c 		CG(current_import_const) = NULL;
current_import_const  135 Zend/zend_globals.h 	HashTable *current_import_const;