Lines Matching refs:ce

48 	zend_class_entry *ce;  in spl_find_ce_by_name()  local
53 ce = zend_hash_find_ptr(EG(class_table), lc_name); in spl_find_ce_by_name()
56 ce = zend_lookup_class(name); in spl_find_ce_by_name()
58 if (ce == NULL) { in spl_find_ce_by_name()
63 return ce; in spl_find_ce_by_name()
70 zend_class_entry *parent_class, *ce; in PHP_FUNCTION() local
84 if (NULL == (ce = spl_find_ce_by_name(Z_STR_P(obj), autoload))) { in PHP_FUNCTION()
88 ce = Z_OBJCE_P(obj); in PHP_FUNCTION()
92 parent_class = ce->parent; in PHP_FUNCTION()
105 zend_class_entry *ce; in PHP_FUNCTION() local
117 if (NULL == (ce = spl_find_ce_by_name(Z_STR_P(obj), autoload))) { in PHP_FUNCTION()
121 ce = Z_OBJCE_P(obj); in PHP_FUNCTION()
125 spl_add_interfaces(return_value, ce, 1, ZEND_ACC_INTERFACE); in PHP_FUNCTION()
134 zend_class_entry *ce; in PHP_FUNCTION() local
146 if (NULL == (ce = spl_find_ce_by_name(Z_STR_P(obj), autoload))) { in PHP_FUNCTION()
150 ce = Z_OBJCE_P(obj); in PHP_FUNCTION()
154 spl_add_traits(return_value, ce, 1, ZEND_ACC_TRAIT); in PHP_FUNCTION()
360 zend_class_entry *ce; member
386 alfi->ce = fcc->calling_scope; in autoload_func_info_from_fci()
408 && alfi1->ce == alfi2->ce in autoload_func_info_equals()
415 && alfi1->ce == alfi2->ce in autoload_func_info_equals()
444 zend_call_known_function(func, alfi->obj, alfi->ce, NULL, 1, &param, NULL); in spl_perform_autoload()
452 zend_class_entry *ce = zend_hash_find_ptr(EG(class_table), lc_name); in spl_perform_autoload() local
453 if (ce) { in spl_perform_autoload()
454 return ce; in spl_perform_autoload()
557 alfi->ce = NULL; in PHP_FUNCTION()
635 add_next_index_str(&tmp, zend_string_copy(alfi->ce->name)); in PHP_FUNCTION()