Home
last modified time | relevance | path

Searched defs:object (Results 1 – 25 of 111) sorted by relevance

12345

/PHP-8.0/ext/standard/
H A Dincomplete_class.c31 static void incomplete_class_message(zend_object *object) in incomplete_class_message()
41 static void throw_incomplete_class_error(zend_object *object, const char *what) in throw_incomplete_class_error()
51 static zval *incomplete_class_get_property(zend_object *object, zend_string *member, int type, void… in incomplete_class_get_property()
64 static zval *incomplete_class_write_property(zend_object *object, zend_string *member, zval *value,… in incomplete_class_write_property()
71 static zval *incomplete_class_get_property_ptr_ptr(zend_object *object, zend_string *member, int ty… in incomplete_class_get_property_ptr_ptr()
78 static void incomplete_class_unset_property(zend_object *object, zend_string *member, void **cache_… in incomplete_class_unset_property()
84 static int incomplete_class_has_property(zend_object *object, zend_string *member, int check_empty,… in incomplete_class_has_property()
91 static zend_function *incomplete_class_get_method(zend_object **object, zend_string *method, const … in incomplete_class_get_method()
101 zend_object *object; in php_create_incomplete_object() local
133 PHPAPI zend_string *php_lookup_class_name(zend_object *object) in php_lookup_class_name()
[all …]
/PHP-8.0/ext/com_dotnet/
H A Dcom_handlers.c80 static zval *com_read_dimension(zend_object *object, zval *offset, int type, zval *rv) in com_read_dimension()
116 static void com_write_dimension(zend_object *object, zval *offset, zval *value) in com_write_dimension()
204 static int com_dimension_exists(zend_object *object, zval *member, int check_empty) in com_dimension_exists()
216 static void com_dimension_delete(zend_object *object, zval *offset) in com_dimension_delete()
221 static HashTable *com_properties_get(zend_object *object) in com_properties_get()
231 static HashTable *com_get_gc(zend_object *object, zval **table, int *n) in com_get_gc()
251 zval *object = getThis(); in PHP_FUNCTION() local
391 static zend_string* com_class_name_get(const zend_object *object) in com_class_name_get()
494 static int com_object_count(zend_object *object, zend_long *count) in com_object_count()
565 void php_com_object_free_storage(zend_object *object) in php_com_object_free_storage()
[all …]
H A Dcom_saproxy.c84 static zval *saproxy_read_dimension(zend_object *object, zval *offset, int type, zval *rv) in saproxy_read_dimension()
207 static void saproxy_write_dimension(zend_object *object, zval *offset, zval *value) in saproxy_write_dimension()
289 static int saproxy_dimension_exists(zend_object *object, zval *member, int check_empty) in saproxy_dimension_exists()
301 static void saproxy_dimension_delete(zend_object *object, zval *offset) in saproxy_dimension_delete()
306 static HashTable *saproxy_properties_get(zend_object *object) in saproxy_properties_get()
318 static zend_function *saproxy_constructor_get(zend_object *object) in saproxy_constructor_get()
324 static zend_string* saproxy_class_name_get(const zend_object *object) in saproxy_class_name_get()
340 static int saproxy_count_elements(zend_object *object, zend_long *count) in saproxy_count_elements()
357 static void saproxy_free_storage(zend_object *object) in saproxy_free_storage()
375 static zend_object* saproxy_clone(zend_object *object) in saproxy_clone()
[all …]
/PHP-8.0/Zend/
H A Dzend_weakrefs.stub.php9 public static function create(object $object): WeakReference {} argument
19 public function offsetGet($object): mixed {}
22 public function offsetSet($object, mixed $value): void {}
25 public function offsetExists($object): bool {}
28 public function offsetUnset($object): void {}
H A Dzend_interfaces.c90 ZEND_API void zend_user_it_new_iterator(zend_class_entry *ce, zval *object, zval *retval) in zend_user_it_new_iterator()
113 zval *object = &iter->it.data; in zend_user_it_dtor() local
125 zval *object = &iter->it.data; in zend_user_it_valid() local
142 zval *object = &iter->it.data; in zend_user_it_get_current_data() local
155 zval *object = &iter->it.data; in zend_user_it_get_current_key() local
167 zval *object = &iter->it.data; in zend_user_it_move_forward() local
178 zval *object = &iter->it.data; in zend_user_it_rewind() local
198 static zend_object_iterator *zend_user_it_get_iterator(zend_class_entry *ce, zval *object, int by_r… in zend_user_it_get_iterator()
221 ZEND_API zend_object_iterator *zend_user_it_get_new_iterator(zend_class_entry *ce, zval *object, in… in zend_user_it_get_new_iterator()
348 ZEND_API int zend_user_serialize(zval *object, unsigned char **buffer, size_t *buf_len, zend_serial… in zend_user_serialize()
[all …]
H A Dzend_objects.c29 static zend_always_inline void _zend_object_std_init(zend_object *object, zend_class_entry *ce) in _zend_object_std_init()
41 ZEND_API void ZEND_FASTCALL zend_object_std_init(zend_object *object, zend_class_entry *ce) in zend_object_std_init()
46 ZEND_API void zend_object_std_dtor(zend_object *object) in zend_object_std_dtor()
94 ZEND_API void zend_objects_destroy_object(zend_object *object) in zend_objects_destroy_object()
178 zend_object *object = emalloc(sizeof(zend_object) + zend_object_properties_size(ce)); in zend_objects_new() local
H A Dzend_iterators.c62 static void iter_wrapper_free(zend_object *object) in iter_wrapper_free()
68 static void iter_wrapper_dtor(zend_object *object) in iter_wrapper_dtor()
72 static HashTable *iter_wrapper_get_gc(zend_object *object, zval **table, int *n) { in iter_wrapper_get_gc()
H A Dzend_objects_API.c126 …tic ZEND_COLD zend_never_inline void ZEND_FASTCALL zend_objects_store_put_cold(zend_object *object) in zend_objects_store_put_cold()
139 ZEND_API void ZEND_FASTCALL zend_objects_store_put(zend_object *object) in zend_objects_store_put()
159 ZEND_API void ZEND_FASTCALL zend_objects_store_del(zend_object *object) /* {{{ */ in zend_objects_store_del()
H A Dzend_weakrefs.c86 static void zend_weakref_register(zend_object *object, void *payload) { in zend_weakref_register()
112 static void zend_weakref_unregister(zend_object *object, void *payload) { in zend_weakref_unregister()
167 void zend_weakrefs_notify(zend_object *object) { in zend_weakrefs_notify()
294 static void zend_weakmap_free_obj(zend_object *object) in zend_weakmap_free_obj()
306 static zval *zend_weakmap_read_dimension(zend_object *object, zval *offset, int type, zval *rv) in zend_weakmap_read_dimension()
337 static void zend_weakmap_write_dimension(zend_object *object, zval *offset, zval *value) in zend_weakmap_write_dimension()
370 static int zend_weakmap_has_dimension(zend_object *object, zval *offset, int check_empty) in zend_weakmap_has_dimension()
390 static void zend_weakmap_unset_dimension(zend_object *object, zval *offset) in zend_weakmap_unset_dimension()
408 static int zend_weakmap_count_elements(zend_object *object, zend_long *count) in zend_weakmap_count_elements()
444 static HashTable *zend_weakmap_get_gc(zend_object *object, zval **table, int *n) in zend_weakmap_get_gc()
[all …]
H A Dzend_closures.c380 static ZEND_COLD zend_function *zend_closure_get_constructor(zend_object *object) /* {{{ */ in zend_closure_get_constructor()
395 ZEND_API zend_function *zend_get_closure_invoke_method(zend_object *object) /* {{{ */ in zend_get_closure_invoke_method()
437 static zend_function *zend_closure_get_method(zend_object **object, zend_string *method, const zval… in zend_closure_get_method()
447 static ZEND_COLD zval *zend_closure_read_property(zend_object *object, zend_string *member, int typ… in zend_closure_read_property()
454 static ZEND_COLD zval *zend_closure_write_property(zend_object *object, zend_string *member, zval *… in zend_closure_write_property()
461 static ZEND_COLD zval *zend_closure_get_property_ptr_ptr(zend_object *object, zend_string *member, … in zend_closure_get_property_ptr_ptr()
468 static ZEND_COLD int zend_closure_has_property(zend_object *object, zend_string *member, int has_se… in zend_closure_has_property()
477 static ZEND_COLD void zend_closure_unset_property(zend_object *object, zend_string *member, void **… in zend_closure_unset_property()
483 static void zend_closure_free_storage(zend_object *object) /* {{{ */ in zend_closure_free_storage()
543 static HashTable *zend_closure_get_debug_info(zend_object *object, int *is_temp) /* {{{ */ in zend_closure_get_debug_info()
/PHP-8.0/ext/spl/
H A Dspl_array.c758 zval *object = ZEND_THIS; in PHP_METHOD() local
1177 zval *object = ZEND_THIS; in PHP_METHOD() local
1206 zval *object = ZEND_THIS; in PHP_METHOD() local
1230 zval *object = ZEND_THIS; in PHP_METHOD() local
1245 zval *object = ZEND_THIS; in PHP_METHOD() local
1260 zval *object = ZEND_THIS; in PHP_METHOD() local
1274 zval *object = ZEND_THIS; in PHP_METHOD() local
1309 zval *object = ZEND_THIS; in PHP_METHOD() local
1323 zval *object = ZEND_THIS; in PHP_METHOD() local
1338 zval *object = ZEND_THIS; in PHP_METHOD() local
[all …]
H A Dspl_observer.stub.php26 public function attach(object $object, mixed $info = null) {} argument
29 public function detach(object $object) {} argument
32 public function contains(object $object) {} argument
78 public function offsetExists($object) {}
84 public function offsetGet($object) {}
91 public function offsetSet($object, mixed $info = null) {}
98 public function offsetUnset($object) {}
101 public function getHash(object $object) {} argument
H A Dspl_iterators.c134 #define SPL_FETCH_SUB_ELEMENT(var, object, element) \ argument
143 #define SPL_FETCH_SUB_ELEMENT_ADDR(var, object, element) \ argument
204 spl_recursive_it_object *object = Z_SPLRECURSIVE_IT_P(&iter->data); in spl_recursive_it_get_current_data() local
212 spl_recursive_it_object *object = Z_SPLRECURSIVE_IT_P(&iter->data); in spl_recursive_it_get_current_key() local
449 spl_recursive_it_object *object = Z_SPLRECURSIVE_IT_P(zobject); in spl_recursive_it_get_iterator() local
483 zval *object = ZEND_THIS; in spl_recursive_it_it_construct() local
618 spl_recursive_it_object *object = Z_SPLRECURSIVE_IT_P(ZEND_THIS); in PHP_METHOD() local
630 spl_recursive_it_object *object = Z_SPLRECURSIVE_IT_P(ZEND_THIS); in PHP_METHOD() local
2073 spl_dual_it_object *object = spl_dual_it_from_obj(_object); in spl_dual_it_dtor() local
2089 spl_dual_it_object *object = spl_dual_it_from_obj(_object); in spl_dual_it_free_storage() local
[all …]
H A Dspl_fixedarray.c250 static void spl_fixedarray_object_free_storage(zend_object *object) in spl_fixedarray_object_free_storage()
414 static void spl_fixedarray_object_write_dimension(zend_object *object, zval *offset, zval *value) in spl_fixedarray_object_write_dimension()
458 static void spl_fixedarray_object_unset_dimension(zend_object *object, zval *offset) in spl_fixedarray_object_unset_dimension()
519 static int spl_fixedarray_object_count_elements(zend_object *object, zend_long *count) in spl_fixedarray_object_count_elements()
541 zval *object = ZEND_THIS; in PHP_METHOD() local
593 zval *object = ZEND_THIS; in PHP_METHOD() local
689 zval *object = ZEND_THIS; in PHP_METHOD() local
702 zval *object = ZEND_THIS; in PHP_METHOD() local
809 spl_fixedarray_object *object = Z_SPLFIXEDARRAY_P(&iter->data); in spl_fixedarray_it_valid() local
822 spl_fixedarray_object *object = Z_SPLFIXEDARRAY_P(&iter->data); in spl_fixedarray_it_get_current_data() local
[all …]
/PHP-8.0/ext/sqlite3/
H A Dsqlite3.c99 zval *object = ZEND_THIS; in PHP_METHOD() local
180 zval *object = ZEND_THIS; in PHP_METHOD() local
208 zval *object = ZEND_THIS; in PHP_METHOD() local
249 zval *object = ZEND_THIS; in PHP_METHOD() local
266 zval *object = ZEND_THIS; in PHP_METHOD() local
287 zval *object = ZEND_THIS; in PHP_METHOD() local
308 zval *object = ZEND_THIS; in PHP_METHOD() local
335 zval *object = ZEND_THIS; in PHP_METHOD() local
356 zval *object = ZEND_THIS; in PHP_METHOD() local
389 zval *object = ZEND_THIS; in PHP_METHOD() local
[all …]
/PHP-8.0/ext/intl/transliterator/
H A Dtransliterator_class.c31 int transliterator_object_construct( zval *object, in transliterator_object_construct()
99 static void Transliterator_objects_free( zend_object *object ) in Transliterator_objects_free()
131 static zend_object *Transliterator_clone_obj( zend_object *object ) in Transliterator_clone_obj()
190 static zval *Transliterator_get_property_ptr_ptr( zend_object *object, zend_string *name, int type,… in Transliterator_get_property_ptr_ptr()
209 static zval *Transliterator_read_property( zend_object *object, zend_string *name, int type, void *… in Transliterator_read_property()
231 static zval *Transliterator_write_property( zend_object *object, zend_string *name, zval *value, in Transliterator_write_property()
/PHP-8.0/ext/date/
H A Dphp_date.stub.php50 function date_format(DateTimeInterface $object, string $format): string {}
52 function date_modify(DateTime $object, string $modifier): DateTime|false {}
54 function date_add(DateTime $object, DateInterval $interval): DateTime {}
56 function date_sub(DateTime $object, DateInterval $interval): DateTime {}
58 function date_timezone_get(DateTimeInterface $object): DateTimeZone|false {}
62 function date_offset_get(DateTimeInterface $object): int {}
74 function date_timestamp_set(DateTime $object, int $timestamp): DateTime {}
76 function date_timestamp_get(DateTimeInterface $object): int {}
80 function timezone_name_get(DateTimeZone $object): string {}
89 function timezone_location_get(DateTimeZone $object): array|false {}
[all …]
H A Dphp_date.c2829 zval *object; in PHP_FUNCTION() local
2914 zval *object; in PHP_FUNCTION() local
2933 zval *object, new_object; in PHP_METHOD() local
2971 zval *object, *interval; in PHP_FUNCTION() local
3024 zval *object, *interval; in PHP_FUNCTION() local
3121 zval *object; in PHP_FUNCTION() local
3202 zval *object; in PHP_FUNCTION() local
3248 zval *object; in PHP_FUNCTION() local
3298 zval *object; in PHP_FUNCTION() local
3343 zval *object; in PHP_FUNCTION() local
[all …]
/PHP-8.0/ext/intl/calendar/
H A Dcalendar_class.cpp43 U_CFUNC void calendar_object_create(zval *object, in calendar_object_create()
60 U_CFUNC Calendar *calendar_fetch_native_calendar(zend_object *object) in calendar_fetch_native_calendar()
67 U_CFUNC void calendar_object_construct(zval *object, in calendar_object_construct()
78 static zend_object *Calendar_clone_obj(zend_object *object) in Calendar_clone_obj()
147 static HashTable *Calendar_get_debug_info(zend_object *object, int *is_temp) in Calendar_get_debug_info()
234 static void Calendar_objects_free(zend_object *object) in Calendar_objects_free()
/PHP-8.0/ext/intl/breakiterator/
H A Dbreakiterator_class.cpp46 U_CFUNC void breakiterator_object_create(zval *object, in breakiterator_object_create()
66 U_CFUNC void breakiterator_object_construct(zval *object, in breakiterator_object_construct()
97 static zend_object *BreakIterator_clone_obj(zend_object *object) in BreakIterator_clone_obj()
137 static HashTable *BreakIterator_get_debug_info(zend_object *object, int *is_temp) in BreakIterator_get_debug_info()
186 static void BreakIterator_objects_free(zend_object *object) in BreakIterator_objects_free()
/PHP-8.0/ext/intl/dateformat/
H A Ddateformat_class.c32 static void IntlDateFormatter_object_dtor(zend_object *object ) in IntlDateFormatter_object_dtor()
39 void IntlDateFormatter_object_free( zend_object *object ) in IntlDateFormatter_object_free()
74 zend_object *IntlDateFormatter_object_clone(zend_object *object) in IntlDateFormatter_object_clone()
/PHP-8.0/ext/intl/resourcebundle/
H A Dresourcebundle_class.c38 static void ResourceBundle_object_free( zend_object *object ) in ResourceBundle_object_free()
85 zval *object = return_value; in resourcebundle_ctor() local
166 static void resourcebundle_array_fetch(zend_object *object, zval *offset, zval *return_value, int f… in resourcebundle_array_fetch()
221 zval *resourcebundle_array_get(zend_object *object, zval *offset, int type, zval *rv) in resourcebundle_array_get()
237 zval * object; in PHP_FUNCTION() local
248 int resourcebundle_array_count(zend_object *object, zend_long *count) in resourcebundle_array_count()
/PHP-8.0/ext/simplexml/
H A Dsimplexml.c635 static void sxe_dimension_write(zend_object *object, zval *offset, zval *value) in sxe_dimension_write()
917 static void sxe_dimension_delete(zend_object *object, zval *offset) in sxe_dimension_delete()
990 static int sxe_prop_is_empty(zend_object *object) /* {{{ */ in sxe_prop_is_empty()
1223 static HashTable *sxe_get_properties(zend_object *object) /* {{{ */ in sxe_get_properties()
1809 static int cast_object(zval *object, int type, char *contents) in cast_object()
1943 static int sxe_count_elements(zend_object *object, zend_long *count) /* {{{ */ in sxe_count_elements()
2106 sxe_object_clone(zend_object *object) in sxe_object_clone()
2152 static void sxe_object_dtor(zend_object *object) in sxe_object_dtor()
2180 static void sxe_object_free_storage(zend_object *object) in sxe_object_free_storage()
2603 void *simplexml_export_node(zval *object) /* {{{ */ in simplexml_export_node()
[all …]
/PHP-8.0/ext/intl/timezone/
H A Dtimezone_class.cpp48 U_CFUNC void timezone_object_construct(const TimeZone *zone, zval *object, int owned) in timezone_object_construct()
225 static zend_object *TimeZone_clone_obj(zend_object *object) in TimeZone_clone_obj()
292 static HashTable *TimeZone_get_debug_info(zend_object *object, int *is_temp) in TimeZone_get_debug_info()
355 static void TimeZone_objects_dtor(zend_object *object) in TimeZone_objects_dtor()
362 static void TimeZone_objects_free(zend_object *object) in TimeZone_objects_free()
/PHP-8.0/ext/intl/msgformat/
H A Dmsgformat.c35 zval* object; in msgfmt_ctor() local
135 zval* object = NULL; in PHP_FUNCTION() local
156 zval* object = NULL; in PHP_FUNCTION() local

Completed in 111 milliseconds

12345