Lines Matching refs:ce

117 static int clean_non_persistent_class(zend_class_entry **ce TSRMLS_DC) /* {{{ */  in clean_non_persistent_class()
119 return ((*ce)->type == ZEND_INTERNAL_CLASS) ? ZEND_HASH_APPLY_STOP : ZEND_HASH_APPLY_REMOVE; in clean_non_persistent_class()
123 static int clean_non_persistent_class_full(zend_class_entry **ce TSRMLS_DC) /* {{{ */ in clean_non_persistent_class_full()
125 return ((*ce)->type != ZEND_INTERNAL_CLASS); in clean_non_persistent_class_full()
361 zend_class_entry *ce = EG(current_execute_data)->function_state.function->common.scope; in get_active_class_name() local
364 *space = ce ? "::" : ""; in get_active_class_name()
366 return ce ? ce->name : ""; in get_active_class_name()
1042 …ex(const char *name, int name_length, int use_autoload, zend_class_entry ***ce TSRMLS_DC) /* {{{ */ in zend_lookup_class_ex()
1072 if (zend_hash_quick_find(EG(class_table), lc_name, lc_length, hash, (void **) ce) == SUCCESS) { in zend_lookup_class_ex()
1142 retval = zend_hash_quick_find(EG(class_table), lc_name, lc_length, hash, (void **) ce); in zend_lookup_class_ex()
1148 ZEND_API int zend_lookup_class(const char *name, int name_length, zend_class_entry ***ce TSRMLS_DC)… in zend_lookup_class()
1150 return zend_lookup_class_ex(name, name_length, 1, ce TSRMLS_CC); in zend_lookup_class()
1617 void zend_verify_abstract_class(zend_class_entry *ce TSRMLS_DC) /* {{{ */ in zend_verify_abstract_class()
1621 …if ((ce->ce_flags & ZEND_ACC_IMPLICIT_ABSTRACT_CLASS) && !(ce->ce_flags & ZEND_ACC_EXPLICIT_ABSTRA… in zend_verify_abstract_class()
1624 …zend_hash_apply_with_argument(&ce->function_table, (apply_func_arg_t) zend_verify_abstract_class_f… in zend_verify_abstract_class()
1628 ce->name, ai.cnt, in zend_verify_abstract_class()