Home
last modified time | relevance | path

Searched refs:ce (Results 51 – 75 of 122) sorted by relevance

12345

/PHP-5.3/Zend/
H A Dzend_execute.c162 #define IS_CTOR_CALL(ce) (((zend_uintptr_t)(ce)) & CTOR_CALL_BIT) argument
163 #define IS_CTOR_USED(ce) (((zend_uintptr_t)(ce)) & CTOR_USED_BIT) argument
165 #define ENCODE_CTOR(ce, used) \ argument
166 ((zend_class_entry*)(((zend_uintptr_t)(ce)) | CTOR_CALL_BIT | ((used) ? CTOR_USED_BIT : 0)))
167 #define DECODE_CTOR(ce) \ argument
168 ((zend_class_entry*)(((zend_uintptr_t)(ce)) & ~(CTOR_CALL_BIT|CTOR_USED_BIT)))
481 zend_class_entry *ce; in zend_verify_arg_type() local
494 need_msg = zend_verify_arg_class_kind(cur_arg_info, fetch_type, &class_name, &ce TSRMLS_CC); in zend_verify_arg_type()
498 need_msg = zend_verify_arg_class_kind(cur_arg_info, fetch_type, &class_name, &ce TSRMLS_CC); in zend_verify_arg_type()
499 if (!ce || !instanceof_function(Z_OBJCE_P(arg), ce TSRMLS_CC)) { in zend_verify_arg_type()
[all …]
H A Dzend_objects.h28 ZEND_API void zend_object_std_init(zend_object *object, zend_class_entry *ce TSRMLS_DC);
H A Dzend_execute_API.c117 static int clean_non_persistent_class(zend_class_entry **ce TSRMLS_DC) /* {{{ */ 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()
1142 retval = zend_hash_quick_find(EG(class_table), lc_name, lc_length, hash, (void **) ce); in zend_lookup_class_ex()
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()
[all …]
H A Dzend_vm_def.h1985 if (!ce) {
2973 clone = ce ? ce->clone : NULL;
2976 if (ce) {
2983 if (ce && clone) {
3048 if (!ce) {
3060 EG(scope) = ce;
3595 if (!ce || ce->get_iterator == NULL) {
3620 if (ce && ce->get_iterator) {
3626 if (!ce || !ce->get_iterator) {
3644 if (ce && ce->get_iterator) {
[all …]
H A Dzend_vm_execute.h1796 clone = ce ? ce->clone : NULL; in ZEND_CLONE_SPEC_CONST_HANDLER()
2161 if (ce && ce->get_iterator) { in ZEND_FE_RESET_SPEC_CONST_HANDLER()
2167 if (!ce || !ce->get_iterator) { in ZEND_FE_RESET_SPEC_CONST_HANDLER()
2185 if (ce && ce->get_iterator) { in ZEND_FE_RESET_SPEC_CONST_HANDLER()
5092 clone = ce ? ce->clone : NULL; in ZEND_CLONE_SPEC_TMP_HANDLER()
5457 if (ce && ce->get_iterator) { in ZEND_FE_RESET_SPEC_TMP_HANDLER()
5481 if (ce && ce->get_iterator) { in ZEND_FE_RESET_SPEC_TMP_HANDLER()
8467 clone = ce ? ce->clone : NULL; in ZEND_CLONE_SPEC_VAR_HANDLER()
8856 if (ce && ce->get_iterator) { in ZEND_FE_RESET_SPEC_VAR_HANDLER()
17007 clone = ce ? ce->clone : NULL; in ZEND_CLONE_SPEC_UNUSED_HANDLER()
[all …]
H A Dzend_closures.c310 zend_class_entry ce; in zend_register_closure_ce() local
312 INIT_CLASS_ENTRY(ce, "Closure", closure_functions); in zend_register_closure_ce()
313 zend_ce_closure = zend_register_internal_class(&ce TSRMLS_CC); in zend_register_closure_ce()
H A Dzend_execute.h73 ZEND_API int zend_lookup_class(const char *name, int name_length, zend_class_entry ***ce TSRMLS_DC);
74 …up_class_ex(const char *name, int name_length, int use_autoload, zend_class_entry ***ce TSRMLS_DC);
369 void zend_verify_abstract_class(zend_class_entry *ce TSRMLS_DC);
H A Dzend_compile.h170 zend_class_entry *ce; member
449 ZEND_API void zend_do_inherit_interfaces(zend_class_entry *ce, const zend_class_entry *iface TSRMLS…
450 ZEND_API void zend_do_implement_interface(zend_class_entry *ce, zend_class_entry *iface TSRMLS_DC);
453 ZEND_API void zend_do_inheritance(zend_class_entry *ce, zend_class_entry *parent_ce TSRMLS_DC);
573 void zend_class_add_ref(zend_class_entry **ce);
593 ZEND_API void zend_initialize_class_data(zend_class_entry *ce, zend_bool nullify_handlers TSRMLS_DC…
H A Dzend_exceptions.c686 zend_class_entry ce; in zend_register_default_exception() local
688 INIT_CLASS_ENTRY(ce, "Exception", default_exception_functions); in zend_register_default_exception()
689 default_exception_ce = zend_register_internal_class(&ce TSRMLS_CC); in zend_register_default_exception()
702 INIT_CLASS_ENTRY(ce, "ErrorException", error_exception_functions); in zend_register_default_exception()
703 error_exception_ce = zend_register_internal_class_ex(&ce, default_exception_ce, NULL TSRMLS_CC); in zend_register_default_exception()
/PHP-5.3/ext/spl/
H A Dspl_heap.c105 …zend_call_method_with_2_params(&object, heap_object->std.ce, &heap_object->fptr_cmp, "compare", &r… in spl_ptr_heap_cmp_cb_helper()
356 zend_object_iterator *spl_heap_get_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_D…
489 new_obj_val = spl_heap_object_new_ex(old_object->ce, &intern, zobject, 1 TSRMLS_CC); in spl_heap_object_clone()
504 zend_call_method_with_0_params(&object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_heap_object_count_elements()
543 pnstr = spl_gen_private_prop_name(ce, "flags", sizeof("flags")-1, &pnlen TSRMLS_CC); in spl_heap_object_get_debug_info_helper()
547 pnstr = spl_gen_private_prop_name(ce, "isCorrupted", sizeof("isCorrupted")-1, &pnlen TSRMLS_CC); in spl_heap_object_get_debug_info_helper()
559 pnstr = spl_gen_private_prop_name(ce, "heap", sizeof("heap")-1, &pnlen TSRMLS_CC); in spl_heap_object_get_debug_info_helper()
1099 zend_object_iterator *spl_heap_get_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_D… in spl_heap_get_iterator() argument
1114 iterator->intern.ce = ce; in spl_heap_get_iterator()
1123 zend_object_iterator *spl_pqueue_get_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS… in spl_pqueue_get_iterator() argument
[all …]
H A Dspl_fixedarray.c203 zend_object_iterator *spl_fixedarray_get_iterator(zend_class_entry *ce, zval *object, int by_ref TS…
318 new_obj_val = spl_fixedarray_object_new_ex(old_object->ce, &intern, zobject, 1 TSRMLS_CC); in spl_fixedarray_object_clone()
369 …zend_call_method_with_1_params(&object, intern->std.ce, &intern->fptr_offset_get, "offsetGet", &rv… in spl_fixedarray_object_read_dimension()
430 …zend_call_method_with_2_params(&object, intern->std.ce, &intern->fptr_offset_set, "offsetSet", NUL… in spl_fixedarray_object_write_dimension()
470 …zend_call_method_with_1_params(&object, intern->std.ce, &intern->fptr_offset_del, "offsetUnset", N… in spl_fixedarray_object_unset_dimension()
520 …zend_call_method_with_1_params(&object, intern->std.ce, &intern->fptr_offset_has, "offsetExists", … in spl_fixedarray_object_has_dimension()
542 zend_call_method_with_0_params(&object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_fixedarray_object_count_elements()
1022 zend_object_iterator *spl_fixedarray_get_iterator(zend_class_entry *ce, zval *object, int by_ref TS… in spl_fixedarray_get_iterator() argument
1037 iterator->intern.ce = ce; in spl_fixedarray_get_iterator()
H A Dspl_iterators.h121 zend_class_entry *ce; member
H A Dspl_functions.h68 char * spl_gen_private_prop_name(zend_class_entry *ce, char *prop_name, int prop_len, int *name_len…
/PHP-5.3/ext/standard/
H A Duser_filters.c33 zend_class_entry *ce; member
332 if (fdat->ce == NULL) { in user_filter_factory_create()
334 (zend_class_entry ***)&fdat->ce TSRMLS_CC)) { in user_filter_factory_create()
340 fdat->ce = *(zend_class_entry**)fdat->ce; in user_filter_factory_create()
351 object_init_ex(obj, fdat->ce); in user_filter_factory_create()
/PHP-5.3/ext/simplexml/
H A Dsimplexml.c2045 zend_class_entry *parent = ce; in php_sxe_object_new()
2061 intern->zo.ce = ce; in php_sxe_object_new()
2122 zend_class_entry *ce= sxe_class_entry; in PHP_FUNCTION() local
2135 if (!ce) { in PHP_FUNCTION()
2136 ce = sxe_class_entry; in PHP_FUNCTION()
2160 zend_class_entry *ce= sxe_class_entry; in PHP_FUNCTION() local
2173 if (!ce) { in PHP_FUNCTION()
2174 ce = sxe_class_entry; in PHP_FUNCTION()
2418 zend_class_entry *ce= sxe_class_entry; in PHP_FUNCTION() local
2439 if (!ce) { in PHP_FUNCTION()
[all …]
/PHP-5.3/ext/pdo/
H A Dpdo.c360 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
373 INIT_CLASS_ENTRY(ce, "PDOException", NULL); in PHP_MINIT_FUNCTION()
375 …pdo_exception_ce = zend_register_internal_class_ex(&ce, php_pdo_get_exception_base(0 TSRMLS_CC), N… in PHP_MINIT_FUNCTION()
H A Dphp_pdo_driver.h433 zend_class_entry *ce; member
551 zend_class_entry *ce; member
614 zend_class_entry *ce; member
H A Dpdo_dbh.c341 pdbh->ce = dbh->ce; in PHP_METHOD()
1305 ifunc->scope = dbh->ce; in pdo_hash_methods()
1391 zend_class_entry ce; in pdo_dbh_init() local
1393 INIT_CLASS_ENTRY(ce, "PDO", pdo_dbh_functions); in pdo_dbh_init()
1394 pdo_dbh_ce = zend_register_internal_class(&ce TSRMLS_CC); in pdo_dbh_init()
1571 zend_object_value pdo_dbh_new(zend_class_entry *ce TSRMLS_DC) in pdo_dbh_new()
1579 dbh->ce = ce; in pdo_dbh_new()
1583 …zend_hash_copy(dbh->properties, &ce->default_properties, (copy_ctor_func_t) zval_property_ctor, (v… in pdo_dbh_new()
/PHP-5.3/ext/com_dotnet/
H A Dcom_persist.c732 zend_object_std_init(&clone->std, object->std.ce TSRMLS_CC); in helper_clone()
748 static zend_object_value helper_new(zend_class_entry *ce TSRMLS_DC) in helper_new()
766 zend_class_entry ce; in php_com_persist_minit() local
771 INIT_CLASS_ENTRY(ce, "COMPersistHelper", com_persist_helper_methods); in php_com_persist_minit()
772 ce.create_object = helper_new; in php_com_persist_minit()
773 helper_ce = zend_register_internal_class(&ce TSRMLS_CC); in php_com_persist_minit()
/PHP-5.3/ext/standard/tests/strings/
H A Dstrtoupper1-win32.phpt269 ce => ce
301 ee => ce
/PHP-5.3/ext/phar/tests/
H A Dphar_oo_002.phpt96 string(42) "phar://*/files/phar_oo_test.phar.php%ce.php"
134 string(42) "phar://*/files/phar_oo_test.phar.php%ce.php"
H A Dphar_oo_002U.phpt96 unicode(42) "phar://*/files/phar_oo_test.phar.php%ce.php"
134 unicode(42) "phar://*/files/phar_oo_test.phar.php%ce.php"
/PHP-5.3/ext/libxml/
H A Dphp_libxml.h86 PHP_LIBXML_API int php_libxml_register_export(zend_class_entry *ce, php_libxml_export_node export_f…
/PHP-5.3/ext/phar/
H A Dphar_object.c1446 zend_class_entry *ce = p_obj->c; local
2095 zend_class_entry *ce; local
2263 ce = phar_ce_data;
2265 ce = phar_ce_archive;
2270 if (SUCCESS != object_init_ex(ret, ce)) {
2279 zend_call_method_with_1_params(&ret, ce, &ce->constructor, "__construct", NULL, &arg1);
5443 zend_class_entry ce; local
5449 INIT_CLASS_ENTRY(ce, "Phar", php_archive_methods);
5454 INIT_CLASS_ENTRY(ce, "PharData", php_archive_methods);
5462 INIT_CLASS_ENTRY(ce, "Phar", php_archive_methods);
[all …]
/PHP-5.3/ext/mysqli/
H A Dmysqli_prop.c44 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Couldn't fetch %s", obj->zo.ce->name);\
56 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Couldn't fetch %s", obj->zo.ce->name);\
69 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Couldn't fetch %s", obj->zo.ce->name);\

Completed in 180 milliseconds

12345