Home
last modified time | relevance | path

Searched refs:ce (Results 201 – 225 of 298) sorted by relevance

12345678910>>...12

/php-src/ext/libxml/
H A Dlibxml.c1265 zval *php_libxml_register_export(zend_class_entry *ce, php_libxml_export_node export_function) in php_libxml_register_export() argument
1273 return zend_hash_add_mem(&php_libxml_exports, ce->name, &export_hnd, sizeof(export_hnd)); in php_libxml_register_export()
1278 zend_class_entry *ce = NULL; in php_libxml_import_node() local
1283 ce = Z_OBJCE_P(object); in php_libxml_import_node()
1284 while (ce->parent != NULL) { in php_libxml_import_node()
1285 ce = ce->parent; in php_libxml_import_node()
1287 if ((export_hnd = zend_hash_find_ptr(&php_libxml_exports, ce->name))) { in php_libxml_import_node()
/php-src/ext/pdo/
H A Dpdo_dbh.c224 zend_class_entry *ce; in create_driver_specific_pdo_object() local
229 ZEND_HASH_MAP_FOREACH_PTR(&pdo_driver_specific_ce_hash, ce) { in create_driver_specific_pdo_object()
230 if (called_scope != pdo_dbh_ce && instanceof_function(called_scope, ce)) { in create_driver_specific_pdo_object()
1352 func.scope = dbh_obj->std.ce; in pdo_hash_methods()
1525 zend_object *pdo_dbh_new(zend_class_entry *ce) in pdo_dbh_new() argument
1529 dbh = zend_object_alloc(sizeof(pdo_dbh_object_t), ce); in pdo_dbh_new()
1530 zend_object_std_init(&dbh->std, ce); in pdo_dbh_new()
1531 object_properties_init(&dbh->std, ce); in pdo_dbh_new()
H A Dphp_pdo_driver.h619 zend_class_entry *ce; member
668 … zend_result php_pdo_register_driver_specific_ce(const pdo_driver_t *driver, zend_class_entry *ce);
/php-src/ext/gmp/
H A Dgmp_arginfo.h333 zend_class_entry ce, *class_entry; in register_class_GMP() local
335 INIT_CLASS_ENTRY(ce, "GMP", class_GMP_methods); in register_class_GMP()
336 class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_FINAL); in register_class_GMP()
/php-src/Zend/
H A Dzend_builtin_functions_arginfo.h369 zend_class_entry ce, *class_entry; in register_class_stdClass() local
371 INIT_CLASS_ENTRY(ce, "stdClass", NULL); in register_class_stdClass()
372 …class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_ALLOW_DYNAMIC_PROPERTIES… in register_class_stdClass()
H A Dzend_types.h327 zend_class_entry *ce; member
560 zend_class_entry *ce; member
843 #define ZSTR_SET_CE_CACHE(s, ce) ZSTR_SET_CE_CACHE_EX(s, ce, 1) argument
850 #define ZSTR_SET_CE_CACHE_EX(s, ce, validate) do { \ argument
853 SET_CE_CACHE(GC_REFCOUNT(s), ce); \
860 #define SET_CE_CACHE(ce_cache, ce) do { \ argument
861 *((zend_class_entry **)ZEND_MAP_PTR_OFFSET2PTR(ce_cache)) = ce; \
1001 #define Z_OBJCE(zval) (Z_OBJ(zval)->ce)
1036 #define Z_CE(zval) (zval).value.ce
H A Dzend_compile.h453 zend_class_entry *ce; member
472 zend_class_entry *ce; member
939 ZEND_API void zend_cleanup_mutable_class_data(zend_class_entry *ce);
940 ZEND_API void zend_cleanup_internal_class_data(zend_class_entry *ce);
982 ZEND_API void zend_initialize_class_data(zend_class_entry *ce, bool nullify_handlers);
/php-src/ext/random/
H A Drandomizer.c32 if (engine_object->ce->type == ZEND_INTERNAL_CLASS) { in randomizer_common_init()
50 generate_method = zend_hash_find_ptr(&engine_object->ce->function_table, mname); in randomizer_common_init()
554 …zengine = zend_read_property(randomizer->std.ce, &randomizer->std, "engine", strlen("engine"), 1, … in PHP_METHOD()
/php-src/ext/intl/calendar/
H A Dcalendar_arginfo.h325 zend_class_entry ce, *class_entry; in register_class_IntlCalendar() local
327 INIT_CLASS_ENTRY(ce, "IntlCalendar", class_IntlCalendar_methods); in register_class_IntlCalendar()
328 class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_NOT_SERIALIZABLE); in register_class_IntlCalendar()
569 zend_class_entry ce, *class_entry; in register_class_IntlGregorianCalendar() local
571 INIT_CLASS_ENTRY(ce, "IntlGregorianCalendar", class_IntlGregorianCalendar_methods); in register_class_IntlGregorianCalendar()
572 …class_entry = zend_register_internal_class_with_flags(&ce, class_entry_IntlCalendar, ZEND_ACC_NOT_… in register_class_IntlGregorianCalendar()
/php-src/ext/fileinfo/libmagic/
H A Dcdf.c1156 ce[i].f = CAST(t, CDF_TOLE(cep->f))
1166 cdf_catalog_entry_t *ce; in cdf_unpack_catalog() local
1183 CDF_MALLOC(sizeof(cdf_catalog_t) + nr * sizeof(*ce))); in cdf_unpack_catalog()
1186 ce = (*cat)->cat_e; in cdf_unpack_catalog()
1187 memset(ce, 0, nr * sizeof(*ce)); in cdf_unpack_catalog()
1190 cdf_catalog_entry_t *cep = &ce[j]; in cdf_unpack_catalog()
1552 const cdf_catalog_entry_t *ce = cat->cat_e; in cdf_dump_catalog() local
1559 cdf_timestamp_to_timespec(&ts, ce[i].ce_timestamp); in cdf_dump_catalog()
1560 printf("\t%d %s %s", ce[i].ce_num, in cdf_dump_catalog()
1561 cdf_u16tos8(sbuf, ce[i].ce_namlen, ce[i].ce_name), in cdf_dump_catalog()
/php-src/ext/mysqli/
H A Dmysqli_prop.c40 zend_throw_error(NULL, "%s object is already closed", ZSTR_VAL(obj->zo.ce->name)); \
52 zend_throw_error(NULL, "%s object is already closed", ZSTR_VAL(obj->zo.ce->name)); \
64 zend_throw_error(NULL, "%s object is already closed", ZSTR_VAL(obj->zo.ce->name)); \
/php-src/ext/sockets/
H A Dsockets_arginfo.h1070 zend_class_entry ce, *class_entry; in register_class_Socket() local
1072 INIT_CLASS_ENTRY(ce, "Socket", NULL); in register_class_Socket()
1073 …class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_FINAL|ZEND_ACC_NO_DYNAMI… in register_class_Socket()
1080 zend_class_entry ce, *class_entry; in register_class_AddressInfo() local
1082 INIT_CLASS_ENTRY(ce, "AddressInfo", NULL); in register_class_AddressInfo()
1083 …class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_FINAL|ZEND_ACC_NO_DYNAMI… in register_class_AddressInfo()
/php-src/ext/curl/
H A Dcurl_arginfo.h1113 zend_class_entry ce, *class_entry; in register_class_CurlHandle() local
1115 INIT_CLASS_ENTRY(ce, "CurlHandle", NULL); in register_class_CurlHandle()
1116 …class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_FINAL|ZEND_ACC_NO_DYNAMI… in register_class_CurlHandle()
1123 zend_class_entry ce, *class_entry; in register_class_CurlMultiHandle() local
1125 INIT_CLASS_ENTRY(ce, "CurlMultiHandle", NULL); in register_class_CurlMultiHandle()
1126 …class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_FINAL|ZEND_ACC_NO_DYNAMI… in register_class_CurlMultiHandle()
1133 zend_class_entry ce, *class_entry; in register_class_CurlShareHandle() local
1135 INIT_CLASS_ENTRY(ce, "CurlShareHandle", NULL); in register_class_CurlShareHandle()
1136 …class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_FINAL|ZEND_ACC_NO_DYNAMI… in register_class_CurlShareHandle()
/php-src/ext/standard/tests/strings/
H A Dstrtolower.phpt260 ce => ce
H A Dstrtoupper1.phpt263 ce => ce
H A Dchunk_split_variation7.phpt54 whit????e spa????ce
/php-src/sapi/phpdbg/
H A Dphpdbg_utils.h82 int phpdbg_safe_class_lookup(const char *name, int name_length, zend_class_entry **ce);
/php-src/ext/intl/resourcebundle/
H A Dresourcebundle_iterator.c148 zend_object_iterator *resourcebundle_get_iterator( zend_class_entry *ce, zval *object, int byref ) in resourcebundle_get_iterator() argument
/php-src/Zend/Optimizer/
H A Dzend_ssa.h53 zend_class_entry *ce; /* Class entry for instanceof constraints */ member
132 zend_class_entry *ce; member
/php-src/docs/source/miscellaneous/
H A Dstubs.rst222 INIT_CLASS_ENTRY(ce, "Atmosphere", class_Atmosphere_methods);
306 zend_class_entry ce, *class_entry;
308 INIT_CLASS_ENTRY(ce, "Elephant", class_Elephant_methods);
309 class_entry = zend_register_internal_class_ex(&ce, class_entry_stdClass);
370 zend_class_entry ce, *class_entry;
372 INIT_CLASS_ENTRY(ce, "Elephant", class_Elephant_methods);
373 class_entry = zend_register_internal_class_ex(&ce, class_entry_stdClass);
543 zend_class_entry ce, *class_entry;
545 INIT_CLASS_ENTRY(ce, "Elephant", class_Elephant_methods);
546 class_entry = zend_register_internal_class_ex(&ce, NULL);
/php-src/ext/pgsql/
H A Dpgsql_arginfo.h1148 zend_class_entry ce, *class_entry; in register_class_PgSql_Connection() local
1150 INIT_NS_CLASS_ENTRY(ce, "PgSql", "Connection", NULL); in register_class_PgSql_Connection()
1151 …class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_FINAL|ZEND_ACC_NO_DYNAMI… in register_class_PgSql_Connection()
1158 zend_class_entry ce, *class_entry; in register_class_PgSql_Result() local
1160 INIT_NS_CLASS_ENTRY(ce, "PgSql", "Result", NULL); in register_class_PgSql_Result()
1161 …class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_FINAL|ZEND_ACC_NO_DYNAMI… in register_class_PgSql_Result()
1168 zend_class_entry ce, *class_entry; in register_class_PgSql_Lob() local
1170 INIT_NS_CLASS_ENTRY(ce, "PgSql", "Lob", NULL); in register_class_PgSql_Lob()
1171 …class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_FINAL|ZEND_ACC_NO_DYNAMI… in register_class_PgSql_Lob()
/php-src/ext/gd/
H A Dgd_arginfo.h968 zend_class_entry ce, *class_entry; in register_class_GdImage() local
970 INIT_CLASS_ENTRY(ce, "GdImage", NULL); in register_class_GdImage()
971 …class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_FINAL|ZEND_ACC_NO_DYNAMI… in register_class_GdImage()
978 zend_class_entry ce, *class_entry; in register_class_GdFont() local
980 INIT_CLASS_ENTRY(ce, "GdFont", NULL); in register_class_GdFont()
981 …class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_FINAL|ZEND_ACC_NO_DYNAMI… in register_class_GdFont()
/php-src/ext/zend_test/
H A Dfiber.c150 static zend_object *zend_test_fiber_object_create(zend_class_entry *ce) in zend_test_fiber_object_create() argument
157 zend_object_std_init(&fiber->std, ce); in zend_test_fiber_object_create()
/php-src/ext/bcmath/
H A Dbcmath.c880 static zend_object *bcmath_number_create(zend_class_entry *ce) in bcmath_number_create() argument
882 bcmath_number_obj_t *intern = zend_object_alloc(sizeof(bcmath_number_obj_t), ce); in bcmath_number_create()
884 zend_object_std_init(&intern->std, ce); in bcmath_number_create()
885 object_properties_init(&intern->std, ce); in bcmath_number_create()
937 zend_readonly_property_modification_error_ex(ZSTR_VAL(obj->ce->name), ZSTR_VAL(name)); in bcmath_number_write_property()
947 …zend_throw_error(NULL, "Cannot unset readonly property %s::$%s", ZSTR_VAL(obj->ce->name), ZSTR_VAL… in bcmath_number_unset_property()
1358 #define BCMATH_PARAM_NUMBER_OR_STR_OR_LONG(dest_obj, ce, dest_str, dest_long) \ argument
1360 if (UNEXPECTED(!(zend_parse_arg_obj(_arg, &(dest_obj), ce, 0) || \
/php-src/ext/soap/
H A Dphp_encoding.c456 zend_class_entry *ce = Z_OBJCE_P(data); in master_to_xml_int() local
464 …zend_binary_strncasecmp(ZSTR_VAL(ce->name), ZSTR_LEN(ce->name), Z_STRVAL_P(tmp), ZSTR_LEN(ce->name… in master_to_xml_int()
1423 ce = pce; in to_zval_object_ex()
1436 ce = tmp; in to_zval_object_ex()
1460 if (object_init_ex(ret, ce) != SUCCESS) { in to_zval_object_ex()
1471 if (object_init_ex(ret, ce) != SUCCESS) { in to_zval_object_ex()
1508 zobj->ce = ce; in to_zval_object_ex()
1518 if (object_init_ex(ret, ce) != SUCCESS) { in to_zval_object_ex()
1531 if (object_init_ex(ret, ce) != SUCCESS) { in to_zval_object_ex()
1593 if (object_init_ex(ret, ce) != SUCCESS) { in to_zval_object_ex()
[all …]

Completed in 171 milliseconds

12345678910>>...12