/php-src/ext/dom/ |
H A D | token_list.c | 323 zend_illegal_container_offset(object->ce->name, offset, type); in dom_token_list_read_dimension() 336 zend_illegal_container_offset(object->ce->name, offset, BP_VAR_IS); in dom_token_list_has_dimension() 710 zend_object_iterator *dom_token_list_get_iterator(zend_class_entry *ce, zval *object, int by_ref) in dom_token_list_get_iterator() argument
|
H A D | document.c | 2271 zend_class_entry *basece = dom_get_node_ce(modern), *ce = NULL; in dom_document_register_node_class() local 2274 if (zend_parse_parameters(ZEND_NUM_ARGS(), "CC!", &basece, &ce) == FAILURE) { in dom_document_register_node_class() 2283 if (ce == NULL || instanceof_function(ce, basece)) { in dom_document_register_node_class() 2284 if (UNEXPECTED(ce != NULL && (ce->ce_flags & ZEND_ACC_ABSTRACT))) { in dom_document_register_node_class() 2289 dom_set_doc_classmap(intern->document, basece, ce); in dom_document_register_node_class() 2296 …st be a class name derived from %s or null, %s given", ZSTR_VAL(basece->name), ZSTR_VAL(ce->name)); in dom_document_register_node_class()
|
/php-src/ext/intl/converter/ |
H A D | converter_arginfo.h | 122 zend_class_entry ce, *class_entry; in register_class_UConverter() local 124 INIT_CLASS_ENTRY(ce, "UConverter", class_UConverter_methods); in register_class_UConverter() 125 class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_NOT_SERIALIZABLE); in register_class_UConverter()
|
/php-src/ext/xmlwriter/ |
H A D | php_xmlwriter_arginfo.h | 484 zend_class_entry ce, *class_entry; in register_class_XMLWriter() local 486 INIT_CLASS_ENTRY(ce, "XMLWriter", class_XMLWriter_methods); in register_class_XMLWriter() 487 class_entry = zend_register_internal_class_with_flags(&ce, NULL, 0); in register_class_XMLWriter()
|
/php-src/ext/xmlreader/ |
H A D | php_xmlreader_arginfo.h | 176 zend_class_entry ce, *class_entry; in register_class_XMLReader() local 178 INIT_CLASS_ENTRY(ce, "XMLReader", class_XMLReader_methods); in register_class_XMLReader() 179 class_entry = zend_register_internal_class_with_flags(&ce, NULL, 0); in register_class_XMLReader()
|
/php-src/ext/filter/ |
H A D | filter.c | 257 zend_class_entry *ce; in php_zval_filter() local 259 ce = Z_OBJCE_P(value); in php_zval_filter() 260 if (!ce->__tostring) { in php_zval_filter()
|
/php-src/ext/opcache/jit/ |
H A D | zend_jit_ir.c | 14172 JIT_G(current_frame)->ce = ce; 14180 ssa->var_info[ssa_op->op1_use].ce = ce; 14675 JIT_G(current_frame)->ce = ce; 14683 ssa->var_info[ssa_op->op1_use].ce = ce; 14688 ssa->var_info[ssa_op->op1_def].ce = ce; 15025 JIT_G(current_frame)->ce = ce; 15033 ssa->var_info[ssa_op->op1_use].ce = ce; 15038 ssa->var_info[ssa_op->op1_def].ce = ce; 15448 JIT_G(current_frame)->ce = ce; 15456 ssa->var_info[ssa_op->op1_use].ce = ce; [all …]
|
/php-src/ext/gmp/ |
H A D | gmp.c | 251 static inline zend_object *gmp_create_object_ex(zend_class_entry *ce, mpz_ptr *gmpnum_target) /* {{… in gmp_create_object_ex() argument 253 gmp_object *intern = emalloc(sizeof(gmp_object) + zend_object_properties_size(ce)); in gmp_create_object_ex() 255 zend_object_std_init(&intern->std, ce); in gmp_create_object_ex() 256 object_properties_init(&intern->std, ce); in gmp_create_object_ex() 265 static zend_object *gmp_create_object(zend_class_entry *ce) /* {{{ */ in gmp_create_object() argument 268 return gmp_create_object_ex(ce, &gmpnum_dummy); in gmp_create_object() 331 gmp_object *new_object = GET_GMP_OBJECT_FROM_OBJ(gmp_create_object(obj->ce)); in gmp_clone_obj() 476 static int gmp_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buf, size_t buf… in gmp_unserialize() argument
|
/php-src/ext/soap/ |
H A D | soap.c | 204 zend_object_std_init(&obj->std, ce); in soap_server_object_create() 205 object_properties_init(&obj->std, ce); in soap_server_object_create() 221 zend_object_std_init(&url_obj->std, ce); in soap_url_object_create() 222 object_properties_init(&url_obj->std, ce); in soap_url_object_create() 268 zend_object_std_init(&sdl_obj->std, ce); in soap_sdl_object_create() 269 object_properties_init(&sdl_obj->std, ce); in soap_sdl_object_create() 1065 zend_class_entry *ce = NULL; in PHP_METHOD() local 1076 service->soap_class.ce = ce; in PHP_METHOD() 1128 ft = &service->soap_class.ce->function_table; in PHP_METHOD() 1478 object_init_ex(&tmp_soap, service->soap_class.ce); in PHP_METHOD() [all …]
|
H A D | php_soap.h | 83 zend_class_entry *ce; member
|
/php-src/Zend/ |
H A D | zend_constants.h | 76 ZEND_API bool zend_verify_const_access(zend_class_constant *c, zend_class_entry *ce);
|
H A D | zend_operators.h | 81 …FASTCALL instanceof_function_slow(const zend_class_entry *instance_ce, const zend_class_entry *ce); 84 const zend_class_entry *instance_ce, const zend_class_entry *ce) { in instanceof_function() argument 85 return instance_ce == ce || instanceof_function_slow(instance_ce, ce); in instanceof_function()
|
/php-src/ext/xml/ |
H A D | xml.c | 1092 zend_class_entry *ce = object->ce; in php_xml_check_string_method_arg() local 1093 zend_function *method_ptr = zend_hash_find_ptr_lc(&ce->function_table, method_name); in php_xml_check_string_method_arg() 1096 …zend_argument_value_error(arg_num, "method %s::%s() does not exist", ZSTR_VAL(ce->name), ZSTR_VAL(… in php_xml_check_string_method_arg() 1104 parser_handler_fcc->called_scope = ce; in php_xml_check_string_method_arg() 1121 ZSTR_VAL(new_this_obj->ce->name), ZSTR_VAL(method_name)); \
|
/php-src/ext/phar/ |
H A D | phar_object.c | 1406 zend_class_entry *ce = p_obj->c; in phar_build() local 1419 …eption_ex(spl_ce_UnexpectedValueException, 0, "Iterator %s returned no value", ZSTR_VAL(ce->name)); in phar_build() 1430 …ce_BadMethodCallException, 0, "Iterator %s returned an invalid stream handle", ZSTR_VAL(ce->name)); in phar_build() 1454 …lueException, 0, "Iterator %s returned an invalid key (must return a string)", ZSTR_VAL(ce->name)); in phar_build() 1571 …lueException, 0, "Iterator %s returned an invalid key (must return a string)", ZSTR_VAL(ce->name)); in phar_build() 1581 …lueException, 0, "Iterator %s returned an invalid key (must return a string)", ZSTR_VAL(ce->name)); in phar_build() 1987 zend_class_entry *ce; in phar_rename_archive() local 2211 ce = phar_ce_data; in phar_rename_archive() 2213 ce = phar_ce_archive; in phar_rename_archive() 2217 if (SUCCESS != object_init_ex(&ret, ce)) { in phar_rename_archive() [all …]
|
/php-src/ext/com_dotnet/ |
H A D | com_iterator.c | 134 zend_object_iterator *php_com_iter_get(zend_class_entry *ce, zval *object, int by_ref) in php_com_iter_get() argument
|
H A D | com_saproxy.c | 435 if (com_object->ce == php_com_saproxy_class_entry) { in php_com_saproxy_create() 536 zend_object_iterator *php_com_saproxy_iter_get(zend_class_entry *ce, zval *object, int by_ref) in php_com_saproxy_iter_get() argument
|
H A D | com_persist.c | 680 zend_object_std_init(&clone->std, object->std.ce); in helper_clone() 697 static zend_object* helper_new(zend_class_entry *ce) in helper_new() argument
|
/php-src/ext/random/ |
H A D | php_random.h | 154 PHPAPI php_random_engine *php_random_engine_common_init(zend_class_entry *ce, zend_object_handlers …
|
/php-src/ext/zend_test/ |
H A D | observer.c | 131 …!-- Exception: %s -->\n", 2 * ZT_G(observer_nesting_depth), "", ZSTR_VAL(EG(exception)->ce->name)); in observer_end() 281 void declared_class_observer(zend_class_entry *ce, zend_string *name) { in declared_class_observer() argument
|
/php-src/ext/ftp/ |
H A D | php_ftp.c | 74 static zend_object* ftp_object_create(zend_class_entry* ce) { in ftp_object_create() argument 75 php_ftp_object *obj = zend_object_alloc(sizeof(php_ftp_object), ce); in ftp_object_create() 78 zend_object_std_init(zobj, ce); in ftp_object_create() 79 object_properties_init(zobj, ce); in ftp_object_create()
|
/php-src/ext/intl/breakiterator/ |
H A D | breakiterator_iterators.cpp | 94 zend_class_entry *ce, zval *object, int by_ref) in _breakiterator_get_iterator() argument
|
/php-src/ext/libxml/ |
H A D | php_libxml.h | 199 PHP_LIBXML_API zval *php_libxml_register_export(zend_class_entry *ce, php_libxml_export_node export…
|
/php-src/ext/hash/ |
H A D | hash.c | 1361 static zend_object* php_hashcontext_create(zend_class_entry *ce) { in php_hashcontext_create() argument 1362 php_hashcontext_object *objval = zend_object_alloc(sizeof(php_hashcontext_object), ce); in php_hashcontext_create() 1365 zend_object_std_init(zobj, ce); in php_hashcontext_create() 1366 object_properties_init(zobj, ce); in php_hashcontext_create() 1398 zend_object *znew = php_hashcontext_create(zobj->ce); in php_hashcontext_clone()
|
/php-src/sapi/phpdbg/ |
H A D | phpdbg.c | 500 zend_class_entry *ce; in PHP_FUNCTION() local 553 ZEND_HASH_MAP_FOREACH_STR_KEY_PTR(EG(class_table), name, ce) { in PHP_FUNCTION() 554 if (ce->type == ZEND_USER_CLASS) { in PHP_FUNCTION() 555 if (zend_hash_exists(files, ce->info.user.filename)) { in PHP_FUNCTION() 556 ZEND_HASH_MAP_FOREACH_PTR(&ce->function_table, func) { in PHP_FUNCTION()
|
/php-src/ext/mbstring/tests/ |
H A D | mb_str_split_other.phpt | 103 [74, 65, 73, 74, 20, c0, c1, c2, c3, c4, c5, c6, c7, c8, c9, ca, cb, cc, cd, ce, cf]
|