Lines Matching refs:EG

71 		ce = zend_hash_find_ptr(EG(class_table), lc_name);  in spl_find_ce_by_name()
278 if (zend_hash_add(&EG(included_files), opened_path, &dummy)) { in spl_autoload()
292 if (!EG(exception)) { in spl_autoload()
297 return zend_hash_exists(EG(class_table), lc_name); in spl_autoload()
326 while (pos && *pos && !EG(exception)) { in PHP_FUNCTION()
456 zend_hash_exists(EG(class_table), lc_name)) { in PHP_FUNCTION()
601 …spl_func_ptr = zend_hash_str_find_ptr(EG(function_table), "spl_autoload", sizeof("spl_autoload") -… in PHP_FUNCTION()
603 if (EG(autoload_func) == spl_func_ptr) { /* registered already, so we insert that first */ in PHP_FUNCTION()
618 if (UNEXPECTED(alfi.func_ptr == &EG(trampoline))) { in PHP_FUNCTION()
646EG(autoload_func) = zend_hash_str_find_ptr(EG(function_table), "spl_autoload_call", sizeof("spl_au… in PHP_FUNCTION()
648EG(autoload_func) = zend_hash_str_find_ptr(EG(function_table), "spl_autoload", sizeof("spl_autoloa… in PHP_FUNCTION()
710 EG(autoload_func) = NULL; in PHP_FUNCTION()
727 …spl_func_ptr = zend_hash_str_find_ptr(EG(function_table), "spl_autoload", sizeof("spl_autoload") -… in PHP_FUNCTION()
729 if (EG(autoload_func) == spl_func_ptr) { in PHP_FUNCTION()
731 EG(autoload_func) = NULL; in PHP_FUNCTION()
750 if (!EG(autoload_func)) { in PHP_FUNCTION()
751 …if ((fptr = zend_hash_str_find_ptr(EG(function_table), ZEND_AUTOLOAD_FUNC_NAME, sizeof(ZEND_AUTOLO… in PHP_FUNCTION()
759 …fptr = zend_hash_str_find_ptr(EG(function_table), "spl_autoload_call", sizeof("spl_autoload_call")… in PHP_FUNCTION()
761 if (EG(autoload_func) == fptr) { in PHP_FUNCTION()
792 add_next_index_str(return_value, zend_string_copy(EG(autoload_func)->common.function_name)); in PHP_FUNCTION()