Home
last modified time | relevance | path

Searched defs:object (Results 1 – 25 of 129) sorted by path

123456

/php-src/Zend/
H A Dzend_API.c101 ZEND_API ZEND_COLD void zend_wrong_property_read(zval *object, zval *property) in zend_wrong_property_read()
1313 zval **object; in zend_parse_method_parameters() local
1352 zval **object; in zend_parse_method_parameters_ex() local
1677 ZEND_API void object_properties_init(zend_object *object, zend_class_entry *class_type) /* {{{ */ in object_properties_init()
1684 ZEND_API void object_properties_init_ex(zend_object *object, HashTable *properties) /* {{{ */ in object_properties_init_ex()
1717 ZEND_API void object_properties_load(zend_object *object, HashTable *properties) /* {{{ */ in object_properties_load()
3728 zend_object *object = zend_get_this_object(frame); in zend_is_callable_check_class() local
3834 zend_object *object = zend_get_this_object(frame); in zend_is_callable_check_func() local
3951 zend_object *object = zend_get_this_object(frame); in zend_is_callable_check_func() local
4012 ZEND_API zend_string *zend_get_callable_name_ex(zval *callable, zend_object *object) /* {{{ */ in zend_get_callable_name_ex()
[all …]
H A Dzend_API.h50 zend_object *object; member
63 zend_object *object; /* Instance of object for method calls */ member
685 #define call_user_function(function_table, object, function_name, retval_ptr, param_count, params) \ argument
688 #define call_user_function_named(function_table, object, function_name, retval_ptr, param_count, pa… argument
855 zend_function *fn, zend_object *object, zval *retval_ptr, in zend_call_known_instance_method()
862 zend_function *fn, zend_object *object, zval *retval_ptr) in zend_call_known_instance_method_with_0_params()
868 zend_function *fn, zend_object *object, zval *retval_ptr, zval *param) in zend_call_known_instance_method_with_1_params()
H A Dzend_builtin_functions.c944 static void _property_exists(zval *return_value, zval *object, zend_string *property) in _property_exists()
978 zval *object; in ZEND_FUNCTION() local
992 zval *object; variable
1780 zend_object *object; in zend_fetch_debug_backtrace() local
H A Dzend_builtin_functions.stub.php40 function get_class(object $object = UNKNOWN): string {} argument
58 function get_object_vars(object $object): array {} argument
60 function get_mangled_object_vars(object $object): array {} argument
H A Dzend_closures.c415 static ZEND_COLD zend_function *zend_closure_get_constructor(zend_object *object) /* {{{ */ in zend_closure_get_constructor()
462 ZEND_API zend_function *zend_get_closure_invoke_method(zend_object *object) /* {{{ */ in zend_get_closure_invoke_method()
505 static zend_function *zend_closure_get_method(zend_object **object, zend_string *method, const zval… in zend_closure_get_method()
515 static void zend_closure_free_storage(zend_object *object) /* {{{ */ in zend_closure_free_storage()
580 static HashTable *zend_closure_get_debug_info(zend_object *object, int *is_temp) /* {{{ */ in zend_closure_get_debug_info()
H A Dzend_exceptions.c84 static inline zend_class_entry *i_get_exception_base(zend_object *object) /* {{{ */ in i_get_exception_base()
90 ZEND_API zend_class_entry *zend_get_exception_base(zend_object *object) /* {{{ */ in zend_get_exception_base()
262 zend_object *object = zend_objects_new(class_type); in zend_default_exception_new() local
308 zval tmp, *object, *previous = NULL; in ZEND_METHOD() local
346 zval *object = ZEND_THIS; in ZEND_METHOD() local
359 zval tmp, *object, *previous = NULL; in ZEND_METHOD() local
401 #define GET_PROPERTY(object, id) \ argument
403 #define GET_PROPERTY_SILENT(object, id) \ argument
622 zval *object = ZEND_THIS; in ZEND_METHOD() local
H A Dzend_execute.c639 static zend_never_inline ZEND_COLD void ZEND_FASTCALL zend_throw_non_object_error(zval *object, zva… in zend_throw_non_object_error()
1509 … zend_never_inline ZEND_COLD void ZEND_FASTCALL zend_use_object_as_array(const zend_object *object) in zend_use_object_as_array()
2071 static zend_never_inline void zend_post_incdec_overloaded_property(zend_object *object, zend_string… in zend_post_incdec_overloaded_property()
2100 static zend_never_inline void zend_pre_incdec_overloaded_property(zend_object *object, zend_string … in zend_pre_incdec_overloaded_property()
2133 static zend_never_inline void zend_assign_op_overloaded_property(zend_object *object, zend_string *… in zend_assign_op_overloaded_property()
2262 static zend_never_inline ZEND_COLD void ZEND_FASTCALL zend_invalid_method_call(zval *object, zval *… in zend_invalid_method_call()
4747 zend_object *object; in zend_init_dynamic_call_object() local
4843 zend_object *object = Z_OBJ_P(obj); in zend_init_dynamic_call_array() local
H A Dzend_execute_API.c750 zend_result _call_user_function_impl(zval *object, zval *function_name, zval *retval_ptr, uint32_t … in _call_user_function_impl()
1044 zend_function *fn, zend_object *object, zend_class_entry *called_scope, zval *retval_ptr, in zend_call_known_function()
1080 zend_function *fn, zend_object *object, zval *retval_ptr, zval *param1, zval *param2) in zend_call_known_instance_method_with_2_params()
1089 zend_object *object, zend_string *method_name, zval *retval, in zend_call_method_if_exists()
H A Dzend_fibers.c707 static void zend_fiber_object_destroy(zend_object *object) in zend_fiber_object_destroy()
746 static void zend_fiber_object_free(zend_object *object) in zend_fiber_object_free()
756 static HashTable *zend_fiber_object_gc(zend_object *object, zval **table, int *num) in zend_fiber_object_gc()
H A Dzend_gdb.c62 ZEND_API bool zend_gdb_register_code(const void *object, size_t size) in zend_gdb_register_code()
H A Dzend_generators.c219 static void zend_generator_dtor_storage(zend_object *object) /* {{{ */ in zend_generator_dtor_storage()
327 static void zend_generator_free_storage(zend_object *object) /* {{{ */ in zend_generator_free_storage()
350 static HashTable *zend_generator_get_gc(zend_object *object, zval **table, int *n) /* {{{ */ in zend_generator_get_gc()
426 static ZEND_COLD zend_function *zend_generator_get_constructor(zend_object *object) /* {{{ */ in zend_generator_get_constructor()
1101 zend_object_iterator *zend_generator_get_iterator(zend_class_entry *ce, zval *object, int by_ref) /… in zend_generator_get_iterator()
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
141 zval *object = &iter->it.data; in zend_user_it_get_current_data() local
154 zval *object = &iter->it.data; in zend_user_it_get_current_key() local
166 zval *object = &iter->it.data; in zend_user_it_move_forward() local
177 zval *object = &iter->it.data; in zend_user_it_rewind() local
212 static zend_object_iterator *zend_user_it_get_iterator(zend_class_entry *ce, zval *object, int by_r… in zend_user_it_get_iterator()
235 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()
401 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_interfaces.h43 static zend_always_inline zval* zend_call_method_with_0_params(zend_object *object, zend_class_entr… in zend_call_method_with_0_params()
49 static zend_always_inline zval* zend_call_method_with_1_params(zend_object *object, zend_class_entr… in zend_call_method_with_1_params()
55 static zend_always_inline zval* zend_call_method_with_2_params(zend_object *object, zend_class_entr… in zend_call_method_with_2_params()
H A Dzend_iterators.c63 static void iter_wrapper_free(zend_object *object) in iter_wrapper_free()
69 static void iter_wrapper_dtor(zend_object *object) in iter_wrapper_dtor()
73 static HashTable *iter_wrapper_get_gc(zend_object *object, zval **table, int *n) { in iter_wrapper_get_gc()
H A Dzend_object_handlers.c155 ZEND_API HashTable *zend_std_get_debug_info(zend_object *object, int *is_temp) /* {{{ */ in zend_std_get_debug_info()
987 ZEND_API zval *zend_std_read_dimension(zend_object *object, zval *offset, int type, zval *rv) /* {{… in zend_std_read_dimension()
1038 ZEND_API void zend_std_write_dimension(zend_object *object, zval *offset, zval *value) /* {{{ */ in zend_std_write_dimension()
1060 ZEND_API int zend_std_has_dimension(zend_object *object, zval *offset, int check_empty) /* {{{ */ in zend_std_has_dimension()
1252 ZEND_API void zend_std_unset_dimension(zend_object *object, zval *offset) /* {{{ */ in zend_std_unset_dimension()
1480 zend_object *object; in get_static_method_fallback() local
1699 zval *object; in zend_std_compare_objects() local
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()
44 ZEND_API void ZEND_FASTCALL zend_object_std_init(zend_object *object, zend_class_entry *ce) in zend_object_std_init()
49 ZEND_API void zend_object_std_dtor(zend_object *object) in zend_object_std_dtor()
97 ZEND_API void zend_objects_destroy_object(zend_object *object) in zend_objects_destroy_object()
189 zend_object *object = emalloc(sizeof(zend_object) + zend_object_properties_size(ce)); in zend_objects_new() local
H A Dzend_objects_API.c131 …tic ZEND_COLD zend_never_inline void ZEND_FASTCALL zend_objects_store_put_cold(zend_object *object) in zend_objects_store_put_cold()
144 ZEND_API void ZEND_FASTCALL zend_objects_store_put(zend_object *object) in zend_objects_store_put()
164 ZEND_API void ZEND_FASTCALL zend_objects_store_del(zend_object *object) /* {{{ */ in zend_objects_store_del()
H A Dzend_vm_def.h1011 zval *object; variable
1286 zval *object; variable
1359 zval *object; variable
2388 zval *object, *value, tmp; variable
3473 zval *object; variable
8180 zval *object; variable
8923 zend_object *object = Z_OBJ(call->This); variable
H A Dzend_vm_execute.h5579 zval *object; in ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_HANDLER() local
6901 zval *object; in ZEND_INIT_METHOD_CALL_SPEC_CONST_CONST_HANDLER() local
9421 zval *object; in ZEND_INIT_METHOD_CALL_SPEC_CONST_TMPVAR_HANDLER() local
11808 zval *object; in ZEND_INIT_METHOD_CALL_SPEC_CONST_CV_HANDLER() local
16161 zval *object; in ZEND_INIT_METHOD_CALL_SPEC_TMPVAR_CONST_HANDLER() local
17606 zval *object; in ZEND_INIT_METHOD_CALL_SPEC_TMPVAR_TMPVAR_HANDLER() local
18966 zval *object; in ZEND_INIT_METHOD_CALL_SPEC_TMPVAR_CV_HANDLER() local
22975 zval *object; in ZEND_ASSIGN_OBJ_OP_SPEC_VAR_CONST_HANDLER() local
23202 zval *object; in ZEND_PRE_INC_OBJ_SPEC_VAR_CONST_HANDLER() local
23269 zval *object; in ZEND_POST_INC_OBJ_SPEC_VAR_CONST_HANDLER() local
[all …]
H A Dzend_weakrefs.c68 void *ptr, uintptr_t tag, zend_object *object) in zend_weakref_unref_single()
81 static void zend_weakref_unref(zend_object *object, void *tagged_ptr) { in zend_weakref_unref()
97 static void zend_weakref_register(zend_object *object, void *payload) { in zend_weakref_register()
192 void zend_weakrefs_notify(zend_object *object) { in zend_weakrefs_notify()
274 static HashTable *zend_weakref_get_debug_info(zend_object *object, int *is_temp) in zend_weakref_get_debug_info()
329 static void zend_weakmap_free_obj(zend_object *object) in zend_weakmap_free_obj()
429 static void zend_weakmap_unset_dimension(zend_object *object, zval *offset) in zend_weakmap_unset_dimension()
483 HashTable *zend_weakmap_get_gc(zend_object *object, zval **table, int *n) in zend_weakmap_get_gc()
495 HashTable *zend_weakmap_get_key_entry_gc(zend_object *object, zval **table, int *n) in zend_weakmap_get_key_entry_gc()
510 HashTable *zend_weakmap_get_entry_gc(zend_object *object, zval **table, int *n) in zend_weakmap_get_entry_gc()
[all …]
H A Dzend_weakrefs.h54 static zend_always_inline zend_ulong zend_object_to_weakref_key(const zend_object *object) in zend_object_to_weakref_key()
H A Dzend_weakrefs.stub.php13 public static function create(object $object): WeakReference {} argument
25 public function offsetGet($object): mixed {}
28 public function offsetSet($object, mixed $value): void {}
31 public function offsetExists($object): bool {}
34 public function offsetUnset($object): void {}
/php-src/build/
H A Dgen_stub.php354 public static function object(): SimpleType function in SimpleType
/php-src/ext/com_dotnet/
H A Dcom_com.c31 zval *object = ZEND_THIS; in PHP_METHOD() local
676 zval *object, *sinkobject; in PHP_FUNCTION() local
H A Dcom_dotnet.c220 zval *object = ZEND_THIS; in PHP_METHOD() local

Completed in 305 milliseconds

123456