Lines Matching refs:EG

72 		ce = zend_hash_find_ptr(EG(class_table), lc_name);  in spl_find_ce_by_name()
280 if (zend_hash_add(&EG(included_files), opened_path, &dummy)) { in spl_autoload()
294 if (!EG(exception)) { in spl_autoload()
299 return zend_hash_exists(EG(class_table), lc_name); in spl_autoload()
328 while (pos && *pos && !EG(exception)) { in PHP_FUNCTION()
428 if (zend_hash_exists(EG(class_table), lc_name)) { in PHP_FUNCTION()
573 …spl_func_ptr = zend_hash_str_find_ptr(EG(function_table), "spl_autoload", sizeof("spl_autoload") -… in PHP_FUNCTION()
575 if (EG(autoload_func) == spl_func_ptr) { /* registered already, so we insert that first */ in PHP_FUNCTION()
590 if (UNEXPECTED(alfi.func_ptr == &EG(trampoline))) { in PHP_FUNCTION()
618EG(autoload_func) = zend_hash_str_find_ptr(EG(function_table), "spl_autoload_call", sizeof("spl_au… in PHP_FUNCTION()
620EG(autoload_func) = zend_hash_str_find_ptr(EG(function_table), "spl_autoload", sizeof("spl_autoloa… in PHP_FUNCTION()
682 EG(autoload_func) = NULL; in PHP_FUNCTION()
699 …spl_func_ptr = zend_hash_str_find_ptr(EG(function_table), "spl_autoload", sizeof("spl_autoload") -… in PHP_FUNCTION()
701 if (EG(autoload_func) == spl_func_ptr) { in PHP_FUNCTION()
703 EG(autoload_func) = NULL; in PHP_FUNCTION()
722 if (!EG(autoload_func)) { in PHP_FUNCTION()
723 …if ((fptr = zend_hash_str_find_ptr(EG(function_table), ZEND_AUTOLOAD_FUNC_NAME, sizeof(ZEND_AUTOLO… in PHP_FUNCTION()
731 …fptr = zend_hash_str_find_ptr(EG(function_table), "spl_autoload_call", sizeof("spl_autoload_call")… in PHP_FUNCTION()
733 if (EG(autoload_func) == fptr) { in PHP_FUNCTION()
764 add_next_index_str(return_value, zend_string_copy(EG(autoload_func)->common.function_name)); in PHP_FUNCTION()