Home
last modified time | relevance | path

Searched refs:zobj (Results 1 – 18 of 18) sorted by relevance

/PHP-7.3/Zend/
H A Dzend_object_handlers.c106 zend_object *zobj; in zend_std_get_properties() local
130 zobj->properties = zend_array_dup(zobj->properties); in zend_std_get_gc()
200 fci.object = zobj; in zend_std_call_getter()
209 fcic.object = zobj; in zend_std_call_getter()
237 fci.object = zobj; in zend_std_call_setter()
273 fci.object = zobj; in zend_std_call_unsetter()
310 fci.object = zobj; in zend_std_call_issetter()
574 zv = zobj->properties_table + zobj->ce->default_properties_count; in zend_get_property_guard()
769 zobj->properties = zend_array_dup(zobj->properties); in zend_std_write_property()
962 zobj->properties = zend_array_dup(zobj->properties); in zend_std_get_property_ptr_ptr()
[all …]
H A Dzend_object_handlers.h198 ZEND_API zend_string *zend_std_get_class_name(const zend_object *zobj);
201 ZEND_API void rebuild_object_properties(zend_object *zobj);
207 ZEND_API int zend_check_property_access(zend_object *zobj, zend_string *prop_info_name);
211 ZEND_API uint32_t *zend_get_property_guard(zend_object *zobj, zend_string *member);
H A Dzend_vm_execute.h22573 zobj->properties = zend_array_dup(zobj->properties);
22694 zobj->properties = zend_array_dup(zobj->properties);
22815 zobj->properties = zend_array_dup(zobj->properties);
22936 zobj->properties = zend_array_dup(zobj->properties);
24944 zobj->properties = zend_array_dup(zobj->properties);
25065 zobj->properties = zend_array_dup(zobj->properties);
25186 zobj->properties = zend_array_dup(zobj->properties);
25307 zobj->properties = zend_array_dup(zobj->properties);
28839 zobj->properties = zend_array_dup(zobj->properties);
28960 zobj->properties = zend_array_dup(zobj->properties);
[all …]
H A Dzend_vm_def.h1806 zend_object *zobj = Z_OBJ_P(container);
1816 retval = OBJ_PROP(zobj, prop_offset);
1950 zend_object *zobj = Z_OBJ_P(container);
1960 retval = OBJ_PROP(zobj, prop_offset);
2119 zend_object *zobj = Z_OBJ_P(object);
2133 if (EXPECTED(zobj->properties != NULL)) {
2136 GC_DELREF(zobj->properties);
2138 zobj->properties = zend_array_dup(zobj->properties);
2146 if (!zobj->ce->__set) {
2148 if (EXPECTED(zobj->properties == NULL)) {
[all …]
H A Dzend_builtin_functions.c1172 zend_object *zobj; in ZEND_FUNCTION() local
1189 zobj = Z_OBJ_P(obj); in ZEND_FUNCTION()
1191 …if (!zobj->ce->default_properties_count && properties == zobj->properties && !GC_IS_RECURSIVE(prop… in ZEND_FUNCTION()
1193 if (EXPECTED(zobj->handlers == &std_object_handlers)) { in ZEND_FUNCTION()
1209 if (zend_check_property_access(zobj, key) == FAILURE) { in ZEND_FUNCTION()
H A Dzend_execute.c2218 zend_object *zobj = Z_OBJ_P(container); in zend_fetch_property_address() local
2222 retval = OBJ_PROP(zobj, prop_offset); in zend_fetch_property_address()
2227 } else if (EXPECTED(zobj->properties != NULL)) { in zend_fetch_property_address()
2228 if (UNEXPECTED(GC_REFCOUNT(zobj->properties) > 1)) { in zend_fetch_property_address()
2229 if (EXPECTED(!(GC_FLAGS(zobj->properties) & IS_ARRAY_IMMUTABLE))) { in zend_fetch_property_address()
2230 GC_DELREF(zobj->properties); in zend_fetch_property_address()
2232 zobj->properties = zend_array_dup(zobj->properties); in zend_fetch_property_address()
2234 retval = zend_hash_find_ex(zobj->properties, Z_STR_P(prop_ptr), 1); in zend_fetch_property_address()
/PHP-7.3/ext/gmp/
H A Dphp_gmp_int.h24 static inline gmp_object *php_gmp_object_from_zend_object(zend_object *zobj) { in php_gmp_object_from_zend_object() argument
25 return (gmp_object *)( ((char *)zobj) - XtOffsetOf(gmp_object, std) ); in php_gmp_object_from_zend_object()
/PHP-7.3/ext/com_dotnet/
H A Dcom_variant.c501 zval *zobj, *zvalue = NULL; in PHP_FUNCTION() local
509 obj = CDNO_FETCH(zobj); in PHP_FUNCTION()
1030 zval *zobj; in PHP_FUNCTION() local
1034 "O", &zobj, php_com_variant_class_entry)) { in PHP_FUNCTION()
1037 obj = CDNO_FETCH(zobj); in PHP_FUNCTION()
1047 zval *zobj; in PHP_FUNCTION() local
1053 "Ol", &zobj, php_com_variant_class_entry, &vt)) { in PHP_FUNCTION()
1056 obj = CDNO_FETCH(zobj); in PHP_FUNCTION()
1082 zval *zobj; in PHP_FUNCTION() local
1089 "Ol", &zobj, php_com_variant_class_entry, &vt)) { in PHP_FUNCTION()
[all …]
H A Dcom_saproxy.c40 zval *zobj; member
379 zval_ptr_dtor(proxy->zobj); in saproxy_free_storage()
391 Z_ADDREF_P(cloneproxy->zobj); in saproxy_clone()
434 proxy->zobj = rel->zobj; in php_com_saproxy_create()
438 proxy->zobj = com_object; in php_com_saproxy_create()
441 Z_ADDREF_P(proxy->zobj); in php_com_saproxy_create()
H A Dcom_persist.c642 zval *zobj = NULL; in CPH_METHOD() local
646 &zobj, php_com_variant_class_entry)) { in CPH_METHOD()
651 if (!zobj) { in CPH_METHOD()
655 obj = CDNO_FETCH(zobj); in CPH_METHOD()
/PHP-7.3/ext/standard/
H A Dhttp.c62 zend_object *zobj = Z_OBJ_P(type); in php_url_encode_hash_ex() local
63 if (zend_check_property_access(zobj, key) != SUCCESS) { in php_url_encode_hash_ex()
/PHP-7.3/
H A D.gdbinit212 set $zobj = $zvalue->value.obj
213 set $cname = $zobj->ce->name->val
217 if $zobj->properties
218 set $ht = $zobj->properties
220 set $ht = &$zobj->ce->properties_info
/PHP-7.3/ext/phar/
H A Dphar_object.c1124 zval *zobj = getThis(), arg1, arg2; in PHP_METHOD() local
1126 phar_obj = (phar_archive_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset); in PHP_METHOD()
1227 zend_call_method_with_2_params(zobj, Z_OBJCE_P(zobj), in PHP_METHOD()
1360 zval *zobj = getThis(); \
1373 zval *zobj = getThis(); in PHP_METHOD() local
4449 zval *zobj = getThis(), arg1; in PHP_METHOD() local
4455 entry_obj = (phar_entry_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset); in PHP_METHOD()
4497 zend_call_method_with_1_params(zobj, Z_OBJCE_P(zobj), in PHP_METHOD()
4505 zval *zobj = getThis(); \
4518 zval *zobj = getThis(); in PHP_METHOD() local
[all …]
/PHP-7.3/ext/intl/converter/
H A Dconverter.c67 static void php_converter_default_callback(zval *return_value, zval *zobj, zend_long reason, zval *… in php_converter_default_callback() argument
77 php_converter_object *objval = (php_converter_object*)CONV_GET(zobj); in php_converter_default_callback()
530 static void php_converter_resolve_callback(zval *zobj, in php_converter_resolve_callback() argument
539 Z_ADDREF_P(zobj); in php_converter_resolve_callback()
540 add_index_zval(&caller, 0, zobj); in php_converter_resolve_callback()
/PHP-7.3/ext/hash/
H A Dhash.c1110 zend_object *zobj = &objval->std; in php_hashcontext_create() local
1112 zend_object_std_init(zobj, ce); in php_hashcontext_create()
1113 object_properties_init(zobj, ce); in php_hashcontext_create()
1114 zobj->handlers = &php_hashcontext_handlers; in php_hashcontext_create()
1116 return zobj; in php_hashcontext_create()
/PHP-7.3/ext/spl/
H A Dspl_iterators.c890 zval *zobj; in spl_recursive_it_get_method() local
895 zobj = &object->iterators[level].zobject; in spl_recursive_it_get_method()
899 if ((function_handler = zend_hash_find_ptr(&Z_OBJCE_P(zobj)->function_table, method)) == NULL) { in spl_recursive_it_get_method()
900 if (Z_OBJ_HT_P(zobj)->get_method) { in spl_recursive_it_get_method()
901 *zobject = Z_OBJ_P(zobj); in spl_recursive_it_get_method()
905 *zobject = Z_OBJ_P(zobj); in spl_recursive_it_get_method()
/PHP-7.3/ext/pdo/
H A Dpdo_stmt.c2497 zval zobj; in row_prop_read() local
2523 ZVAL_OBJ(&zobj, &stmt->std); in row_prop_read()
2525 return zend_std_read_property(&zobj, member, type, cache_slot, rv); in row_prop_read()
/PHP-7.3/ext/soap/
H A Dphp_encoding.c1489 zend_object *zobj = Z_OBJ_P(ret); in to_zval_object_ex() local
1490 zobj->ce = ce; in to_zval_object_ex()

Completed in 332 milliseconds