Lines Matching refs:ce

46 	zend_class_entry *ce;  in spl_find_ce_by_name()  local
51 ce = zend_hash_find_ptr(EG(class_table), lc_name); in spl_find_ce_by_name()
54 ce = zend_lookup_class(name); in spl_find_ce_by_name()
56 if (ce == NULL) { in spl_find_ce_by_name()
61 return ce; in spl_find_ce_by_name()
68 zend_class_entry *parent_class, *ce; in PHP_FUNCTION() local
82 if (NULL == (ce = spl_find_ce_by_name(Z_STR_P(obj), autoload))) { in PHP_FUNCTION()
86 ce = Z_OBJCE_P(obj); in PHP_FUNCTION()
90 parent_class = ce->parent; in PHP_FUNCTION()
103 zend_class_entry *ce; in PHP_FUNCTION() local
115 if (NULL == (ce = spl_find_ce_by_name(Z_STR_P(obj), autoload))) { in PHP_FUNCTION()
119 ce = Z_OBJCE_P(obj); in PHP_FUNCTION()
123 spl_add_interfaces(return_value, ce, 1, ZEND_ACC_INTERFACE); in PHP_FUNCTION()
132 zend_class_entry *ce; in PHP_FUNCTION() local
144 if (NULL == (ce = spl_find_ce_by_name(Z_STR_P(obj), autoload))) { in PHP_FUNCTION()
148 ce = Z_OBJCE_P(obj); in PHP_FUNCTION()
152 spl_add_traits(return_value, ce, 1, ZEND_ACC_TRAIT); in PHP_FUNCTION()
358 zend_class_entry *ce; member
384 alfi->ce = fcc->calling_scope; in autoload_func_info_from_fci()
406 && alfi1->ce == alfi2->ce in autoload_func_info_equals()
413 && alfi1->ce == alfi2->ce in autoload_func_info_equals()
442 zend_call_known_function(func, alfi->obj, alfi->ce, NULL, 1, &param, NULL); in spl_perform_autoload()
450 zend_class_entry *ce = zend_hash_find_ptr(EG(class_table), lc_name); in spl_perform_autoload() local
451 if (ce) { in spl_perform_autoload()
452 return ce; in spl_perform_autoload()
555 alfi->ce = NULL; in PHP_FUNCTION()
633 add_next_index_str(&tmp, zend_string_copy(alfi->ce->name)); in PHP_FUNCTION()