Home
last modified time | relevance | path

Searched refs:ce (Results 126 – 150 of 188) sorted by relevance

12345678

/PHP-8.0/ext/opcache/Optimizer/
H A Dzend_ssa.h53 zend_class_entry *ce; /* Class entry for instanceof constraints */ member
125 zend_class_entry *ce; member
H A Dzend_ssa.c165 phi->constraint.type.ce = NULL; in pi_type_mask()
531 zend_class_entry *ce = script ? zend_hash_find_ptr(&script->class_table, lcname) : NULL; in place_essa_pis() local
532 if (!ce) { in place_essa_pis()
533 ce = zend_hash_find_ptr(CG(class_table), lcname); in place_essa_pis()
534 if (!ce || ce->type != ZEND_INTERNAL_CLASS) { in place_essa_pis()
541 pi->constraint.type.ce = ce; in place_essa_pis()
/PHP-8.0/ext/tokenizer/
H A Dtokenizer.c254 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
262 INIT_CLASS_ENTRY(ce, "PhpToken", class_PhpToken_methods); in PHP_MINIT_FUNCTION()
263 php_token_ce = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
/PHP-8.0/ext/soap/
H A Dphp_soap.h87 zend_class_entry *ce; member
H A Dsoap.c364 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
377 soap_class_entry = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
381 soap_var_class_entry = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
385 soap_server_class_entry = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
393 soap_param_class_entry = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
997 zend_class_entry *ce = NULL; in PHP_METHOD() local
1010 service->soap_class.ce = ce; in PHP_METHOD()
1068 ft = &service->soap_class.ce->function_table; in PHP_METHOD()
1406 Z_OBJCE_P(tmp_soap_p) == service->soap_class.ce) {
1414 object_init_ex(&tmp_soap, service->soap_class.ce);
[all …]
H A Dphp_encoding.c451 zend_class_entry *ce = Z_OBJCE_P(data); in master_to_xml_int() local
459 …zend_binary_strncasecmp(ZSTR_VAL(ce->name), ZSTR_LEN(ce->name), Z_STRVAL_P(tmp), ZSTR_LEN(ce->name… in master_to_xml_int()
1383 ce = pce; in to_zval_object_ex()
1391 ce = tmp; in to_zval_object_ex()
1415 object_init_ex(ret, ce); in to_zval_object_ex()
1424 object_init_ex(ret, ce); in to_zval_object_ex()
1459 zobj->ce = ce; in to_zval_object_ex()
1469 object_init_ex(ret, ce); in to_zval_object_ex()
1480 object_init_ex(ret, ce); in to_zval_object_ex()
1540 object_init_ex(ret, ce); in to_zval_object_ex()
[all …]
/PHP-8.0/ext/libxml/
H A Dphp_libxml.h97 PHP_LIBXML_API zval *php_libxml_register_export(zend_class_entry *ce, php_libxml_export_node export…
/PHP-8.0/ext/hash/
H A Dhash.c1355 static zend_object* php_hashcontext_create(zend_class_entry *ce) { in php_hashcontext_create() argument
1356 php_hashcontext_object *objval = zend_object_alloc(sizeof(php_hashcontext_object), ce); in php_hashcontext_create()
1359 zend_object_std_init(zobj, ce); in php_hashcontext_create()
1360 object_properties_init(zobj, ce); in php_hashcontext_create()
1387 zend_object *znew = php_hashcontext_create(zobj->ce); in php_hashcontext_clone()
1550 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
1613 INIT_CLASS_ENTRY(ce, "HashContext", class_HashContext_methods); in PHP_MINIT_FUNCTION()
1614 php_hashcontext_ce = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
/PHP-8.0/Zend/
H A Dzend_generators.c1118 zend_object_iterator *zend_generator_get_iterator(zend_class_entry *ce, zval *object, int by_ref) /… in zend_generator_get_iterator() argument
1145 zend_class_entry ce; in zend_register_generator_ce() local
1147 INIT_CLASS_ENTRY(ce, "Generator", class_Generator_methods); in zend_register_generator_ce()
1148 zend_ce_generator = zend_register_internal_class(&ce); in zend_register_generator_ce()
1165 INIT_CLASS_ENTRY(ce, "ClosedGeneratorException", NULL); in zend_register_generator_ce()
1166 zend_ce_ClosedGeneratorException = zend_register_internal_class_ex(&ce, zend_ce_exception); in zend_register_generator_ce()
H A Dzend_compile.h368 zend_class_entry *ce; member
385 zend_class_entry *ce; member
807 ZEND_API void zend_cleanup_internal_class_data(zend_class_entry *ce);
850 ZEND_API void zend_initialize_class_data(zend_class_entry *ce, zend_bool nullify_handlers);
H A Dzend_constants.h75 ZEND_API bool zend_verify_const_access(zend_class_constant *c, zend_class_entry *ce);
H A Dzend_types.h230 #define ZEND_TYPE_SET_CE(t, ce) \ argument
231 ZEND_TYPE_SET_PTR_AND_KIND(t, ce, _ZEND_TYPE_CE_BIT)
297 zend_class_entry *ce; member
481 zend_class_entry *ce; member
831 #define Z_OBJCE(zval) (Z_OBJ(zval)->ce)
866 #define Z_CE(zval) (zval).value.ce
H A Dzend_operators.h67 …FASTCALL instanceof_function_slow(const zend_class_entry *instance_ce, const zend_class_entry *ce);
70 const zend_class_entry *instance_ce, const zend_class_entry *ce) { in instanceof_function() argument
71 return instance_ce == ce || instanceof_function_slow(instance_ce, ce); in instanceof_function()
/PHP-8.0/ext/standard/tests/strings/
H A Dchunk_split_variation7.phpt54 whit????e spa????ce
/PHP-8.0/ext/xmlwriter/
H A Dphp_xmlwriter.c1035 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
1042 INIT_CLASS_ENTRY(ce, "XMLWriter", class_XMLWriter_methods); in PHP_MINIT_FUNCTION()
1043 ce.create_object = xmlwriter_object_new; in PHP_MINIT_FUNCTION()
1044 xmlwriter_class_entry_ce = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
/PHP-8.0/ext/gmp/
H A Dgmp.c245 static inline zend_object *gmp_create_object_ex(zend_class_entry *ce, mpz_ptr *gmpnum_target) /* {{… in gmp_create_object_ex() argument
247 gmp_object *intern = emalloc(sizeof(gmp_object) + zend_object_properties_size(ce)); in gmp_create_object_ex()
249 zend_object_std_init(&intern->std, ce); in gmp_create_object_ex()
250 object_properties_init(&intern->std, ce); in gmp_create_object_ex()
260 static zend_object *gmp_create_object(zend_class_entry *ce) /* {{{ */ in gmp_create_object() argument
263 return gmp_create_object_ex(ce, &gmpnum_dummy); in gmp_create_object()
322 gmp_object *new_object = GET_GMP_OBJECT_FROM_OBJ(gmp_create_object(obj->ce)); in gmp_clone_obj()
468 static int gmp_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buf, size_t buf… in gmp_unserialize() argument
/PHP-8.0/ext/opcache/
H A Dzend_accelerator_module.c659 zend_class_entry *ce; local
663 ZEND_HASH_FOREACH_STR_KEY_PTR(&ZCSG(preload_script)->script.class_table, key, ce) {
664 if (ce->refcount > 1 && !zend_string_equals_ci(key, ce->name)) {
667 add_next_index_str(&scripts, ce->name);
/PHP-8.0/ext/opcache/jit/
H A Dzend_jit_x86.dasc13028 (!on_this || info->ce != ce)) {
13039 if (!ce || (ce->ce_flags & ZEND_ACC_TRAIT)) {
13058 (!on_this || info->ce != ce)) {
13166 ssa->var_info[ssa_op->op1_use].ce = ce;
13573 ssa->var_info[ssa_op->op1_use].ce = ce;
13578 ssa->var_info[ssa_op->op1_def].ce = ce;
13965 ssa->var_info[ssa_op->op1_use].ce = ce;
13970 ssa->var_info[ssa_op->op1_def].ce = ce;
14309 ssa->var_info[ssa_op->op1_use].ce = ce;
14314 ssa->var_info[ssa_op->op1_def].ce = ce;
[all …]
/PHP-8.0/ext/sqlite3/
H A Dsqlite3.c2338 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
2353 INIT_CLASS_ENTRY(ce, "SQLite3", class_SQLite3_methods); in PHP_MINIT_FUNCTION()
2354 ce.create_object = php_sqlite3_object_new; in PHP_MINIT_FUNCTION()
2358 php_sqlite3_sc_entry = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
2363 INIT_CLASS_ENTRY(ce, "SQLite3Stmt", class_SQLite3Stmt_methods); in PHP_MINIT_FUNCTION()
2364 ce.create_object = php_sqlite3_stmt_object_new; in PHP_MINIT_FUNCTION()
2368 php_sqlite3_stmt_entry = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
2373 INIT_CLASS_ENTRY(ce, "SQLite3Result", class_SQLite3Result_methods); in PHP_MINIT_FUNCTION()
2374 ce.create_object = php_sqlite3_result_object_new; in PHP_MINIT_FUNCTION()
2378 php_sqlite3_result_entry = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
/PHP-8.0/ext/json/
H A Djson_encoder.c471 zend_class_entry *ce = Z_OBJCE_P(val); in php_json_encode_serializable_object() local
490 zend_throw_exception_ex(NULL, 0, "Failed calling %s::jsonSerialize()", ZSTR_VAL(ce->name)); in php_json_encode_serializable_object()
/PHP-8.0/ext/spl/
H A Dspl_dllist.c453 zend_object *new_object = spl_dllist_object_new_ex(old_object->ce, old_object, 1); in spl_dllist_object_clone()
467 zend_call_method_with_0_params(object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_dllist_object_count_elements()
1305 zend_object_iterator *spl_dllist_get_iterator(zend_class_entry *ce, zval *object, int by_ref) /* {{… in spl_dllist_get_iterator() argument
1321 iterator->intern.ce = ce; in spl_dllist_get_iterator()
/PHP-8.0/ext/filter/
H A Dfilter.c325 zend_class_entry *ce; in php_zval_filter() local
327 ce = Z_OBJCE_P(value); in php_zval_filter()
328 if (!ce->__tostring) { in php_zval_filter()
/PHP-8.0/ext/ffi/
H A Dffi.c235 object->ce = ce; in zend_ffi_object_init()
4629 zend_bad_array_access(obj->ce); in zend_fake_read_dimension()
4636 zend_bad_array_access(obj->ce); in zend_fake_write_dimension()
4642 zend_bad_array_access(obj->ce); in zend_fake_has_dimension()
4649 zend_bad_array_access(obj->ce); in zend_fake_unset_dimension()
4661 zend_bad_property_access(obj->ce); in zend_fake_read_property()
4668 zend_bad_array_access(obj->ce); in zend_fake_write_property()
4675 zend_bad_array_access(obj->ce); in zend_fake_has_property()
4682 zend_bad_array_access(obj->ce); in zend_fake_unset_property()
4694 zend_class_entry *ce = (*obj_ptr)->ce; in zend_fake_get_method() local
[all …]
/PHP-8.0/ext/xmlreader/
H A Dphp_xmlreader.c1173 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
1185 INIT_CLASS_ENTRY(ce, "XMLReader", class_XMLReader_methods); in PHP_MINIT_FUNCTION()
1186 ce.create_object = xmlreader_objects_new; in PHP_MINIT_FUNCTION()
1187 xmlreader_class_entry = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
/PHP-8.0/ext/com_dotnet/
H A Dcom_iterator.c134 zend_object_iterator *php_com_iter_get(zend_class_entry *ce, zval *object, int by_ref) in php_com_iter_get() argument

Completed in 151 milliseconds

12345678