Home
last modified time | relevance | path

Searched refs:zv (Results 126 – 150 of 203) sorted by relevance

123456789

/php-src/ext/hash/
H A Dhash_tiger.c242 static int php_tiger_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_tiger_unserialize() argument
247 && (r = php_hash_unserialize_spec(hash, zv, PHP_TIGER_SPEC)) == SUCCESS in php_tiger_unserialize()
H A Dhash_whirlpool.c432 static int php_whirlpool_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_whirlpool_unserialize() argument
437 && (r = php_hash_unserialize_spec(hash, zv, PHP_WHIRLPOOL_SPEC)) == SUCCESS in php_whirlpool_unserialize()
H A Dhash_gost.c307 static int php_gost_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_gost_unserialize() argument
312 && (r = php_hash_unserialize_spec(hash, zv, PHP_GOST_SPEC)) == SUCCESS in php_gost_unserialize()
/php-src/ext/fileinfo/
H A Dfileinfo.c57 #define Z_FINFO_P(zv) php_finfo_fetch_object(Z_OBJ_P((zv))) argument
/php-src/ext/phar/
H A Dphar.c26 static void destroy_phar_data(zval *zv);
37 phar_archive_data *phar = (phar_archive_data *)Z_PTR_P(zv); in phar_set_writeable_bit()
285 static void destroy_phar_data_only(zval *zv) /* {{{ */ in destroy_phar_data_only() argument
307 static int phar_tmpclose_apply(zval *zv) /* {{{ */ in phar_tmpclose_apply() argument
309 phar_entry_info *entry = (phar_entry_info *) Z_PTR_P(zv); in phar_tmpclose_apply()
327 static void destroy_phar_data(zval *zv) /* {{{ */ in destroy_phar_data() argument
335 destroy_phar_data_only(zv); in destroy_phar_data()
379 void destroy_phar_manifest_entry(zval *zv) /* {{{ */ in destroy_phar_manifest_entry() argument
381 phar_entry_info *entry = Z_PTR_P(zv); in destroy_phar_manifest_entry()
3373 static void mime_type_dtor(zval *zv) in mime_type_dtor() argument
[all …]
/php-src/sapi/phpdbg/
H A Dphpdbg.c482 zval zv; in phpdbg_add_empty_array() local
483 array_init(&zv); in phpdbg_add_empty_array()
484 ht_zv = zend_hash_add_new(ht, name, &zv); in phpdbg_add_empty_array()
1483 zval *zv = zend_hash_str_find(php_stream_get_url_stream_wrappers_hash(), ZEND_STRL("php")); in main() local
1484 php_stream_wrapper *tmp_wrapper = Z_PTR_P(zv); in main()
1490 Z_PTR_P(zv) = &wrapper; in main()
1730 zval *zv = zend_hash_str_find(php_stream_get_url_stream_wrappers_hash(), ZEND_STRL("php")); in main() local
1731 Z_PTR_P(zv) = (void*)PHPDBG_G(orig_url_wrap_php); in main()
/php-src/ext/sysvshm/
H A Dsysvshm.c43 #define Z_SYSVSHM_P(zv) sysvshm_from_obj(Z_OBJ_P(zv)) argument
/php-src/ext/sysvmsg/
H A Dsysvmsg.c75 #define Z_SYSVMSG_QUEUE_P(zv) sysvmsg_queue_from_obj(Z_OBJ_P(zv)) argument
/php-src/ext/sockets/
H A Dsendrecvmsg.c408 zval *zv = to_zval_run_conversions(buffer, reader, "in6_pktinfo", in php_do_getsockopt_ipv6_rfc3542() local
414 ZVAL_COPY_VALUE(result, zv); in php_do_getsockopt_ipv6_rfc3542()
/php-src/ext/opcache/jit/
H A Dzend_jit_ir.c483 zval *zv; in jit_CONST_ADDR() local
503 zval *zv; in jit_CONST_FUNC_PROTO() local
3541 zval *zv; in zend_jit_case_start() local
5999 zv, 1); in zend_jit_simple_assign()
6004 zv, 1); in zend_jit_simple_assign()
6008 zv, 1); in zend_jit_simple_assign()
9005 zv, 1);
10351 zv, 1);
10364 zv, 1);
11058 zval *zv; local
[all …]
H A Dzend_jit_internal.h37 #define ZEND_ADDR_CONST_ZVAL(zv) \ argument
38 (((zend_jit_addr)(uintptr_t)(zv)) | IS_CONST_ZVAL)
71 ZEND_ADDR_CONST_ZVAL((opline)->op.zv) : \
/php-src/ext/mysqli/
H A Dmysqli.c407 static MYSQLND *mysqli_convert_zv_to_mysqlnd(zval * zv) in mysqli_convert_zv_to_mysqlnd() argument
409 if (Z_TYPE_P(zv) == IS_OBJECT && instanceof_function(Z_OBJCE_P(zv), mysqli_link_class_entry)) { in mysqli_convert_zv_to_mysqlnd()
412 mysqli_object *intern = Z_MYSQLI_P(zv); in mysqli_convert_zv_to_mysqlnd()
/php-src/ext/odbc/
H A Dphp_odbc.c76 #define Z_ODBC_LINK_P(zv) odbc_link_from_obj(Z_OBJ_P(zv)) argument
77 #define Z_ODBC_CONNECTION_P(zv) Z_ODBC_LINK_P(zv)->connection argument
78 #define Z_ODBC_RESULT_P(zv) odbc_result_from_obj(Z_OBJ_P(zv)) argument
99 static int _close_pconn_with_res(zval *zv, void *p) in _close_pconn_with_res() argument
101 zend_resource *le = Z_RES_P(zv); in _close_pconn_with_res()
110 static int _close_pconn(zval *zv) in _close_pconn() argument
112 zend_resource *le = Z_RES_P(zv); in _close_pconn()
875 zval *zv; in PHP_FUNCTION() local
883 odbc_link *link = Z_ODBC_LINK_P(zv); in PHP_FUNCTION()
2127 object_init_ex(zv, odbc_connection_ce); in odbc_sqlconnect()
[all …]
/php-src/ext/opcache/
H A DZendAccelerator.c3484 zval *zv; local
3489 zend_constant *c = Z_PTR_P(zv);
3499 zend_function *func = Z_PTR_P(zv);
3508 zend_class_entry *ce = Z_PTR_P(zv);
3876 zval *zv; local
3890 ce = Z_PTR_P(zv);
3912 zv = zend_hash_set_bucket_key(EG(class_table), (Bucket*)zv, lcname);
3953 zv = zend_hash_set_bucket_key(EG(class_table), (Bucket*)zv, key);
3954 Z_CE_P(zv) = orig_ce;
3976 ce = Z_PTR_P(zv);
[all …]
/php-src/ext/dom/
H A Dphp_dom.h78 #define Z_XPATHOBJ_P(zv) php_xpath_obj_from_obj(Z_OBJ_P((zv))) argument
/php-src/Zend/Optimizer/
H A Dzend_inference.c2102 HashTable *ht = Z_ARRVAL_P(zv); in zend_array_type_info()
2107 if (Z_REFCOUNTED_P(zv)) { in zend_array_type_info()
3375 if (Z_TYPE_P(zv) == IS_STRING) { in _zend_update_type_info()
4363 if (Z_TYPE_P(zv) == IS_LONG || Z_TYPE_P(zv) == IS_DOUBLE) { in can_convert_to_double()
4364 ZVAL_COPY_VALUE(&orig_op1, zv); in can_convert_to_double()
4365 ZVAL_COPY_VALUE(&dval_op1, zv); in can_convert_to_double()
4376 if (Z_TYPE_P(zv) == IS_LONG || Z_TYPE_P(zv) == IS_DOUBLE) { in can_convert_to_double()
4377 ZVAL_COPY_VALUE(&orig_op2, zv); in can_convert_to_double()
4378 ZVAL_COPY_VALUE(&dval_op2, zv); in can_convert_to_double()
4644 if (Z_TYPE_P(zv) == IS_LONG) { in zend_func_return_info()
[all …]
/php-src/Zend/
H A Dzend_builtin_functions.c401 zval *zv = zend_hash_find_known_hash(EG(ini_directives), ZSTR_KNOWN(ZEND_STR_ERROR_REPORTING)); in ZEND_FUNCTION() local
402 if (!zv) { in ZEND_FUNCTION()
407 p = EG(error_reporting_ini_entry) = (zend_ini_entry*)Z_PTR_P(zv); in ZEND_FUNCTION()
1318 zval *zv; in get_declared_class_impl() local
1326 ZEND_HASH_MAP_FOREACH_STR_KEY_VAL(EG(class_table), key, zv) { in get_declared_class_impl()
1327 ce = Z_PTR_P(zv); in get_declared_class_impl()
1332 if (EXPECTED(Z_TYPE_P(zv) == IS_PTR)) { in get_declared_class_impl()
1335 ZEND_ASSERT(Z_TYPE_P(zv) == IS_ALIAS_PTR); in get_declared_class_impl()
H A Dzend_constants.h72 void free_zend_constant(zval *zv);
H A Dzend.c683 static void auto_global_dtor(zval *zv) /* {{{ */ in auto_global_dtor() argument
685 free(Z_PTR_P(zv)); in auto_global_dtor()
690 static void auto_global_copy_ctor(zval *zv) /* {{{ */ in auto_global_copy_ctor() argument
692 zend_auto_global *old_ag = (zend_auto_global *) Z_PTR_P(zv); in auto_global_copy_ctor()
699 Z_PTR_P(zv) = new_ag; in auto_global_copy_ctor()
882 static void module_destructor_zval(zval *zv) /* {{{ */ in module_destructor_zval() argument
884 zend_module_entry *module = (zend_module_entry*)Z_PTR_P(zv); in module_destructor_zval()
H A Dzend_execute.h69 ZEND_API bool ZEND_FASTCALL zend_verify_ref_assignable_zval(zend_reference *ref, zval *zv, bool str…
78 …_API ZEND_COLD void zend_throw_ref_type_error_zval(const zend_property_info *prop, const zval *zv);
79 …_type_error_type(const zend_property_info *prop1, const zend_property_info *prop2, const zval *zv);
H A Dzend_string.c65 static void _str_dtor(zval *zv) in _str_dtor() argument
67 zend_string *str = Z_STR_P(zv); in _str_dtor()
/php-src/ext/standard/
H A Duser_filters.c333 static void filter_item_dtor(zval *zv) in filter_item_dtor() argument
335 struct php_user_filter_data *fdat = Z_PTR_P(zv); in filter_item_dtor()
H A Dformatted_print.c741 zval *args, *zv; in php_formatted_print_get_array() local
747 ZEND_HASH_FOREACH_VAL(array, zv) { in php_formatted_print_get_array()
748 ZVAL_COPY_VALUE(&args[n], zv); in php_formatted_print_get_array()
/php-src/ext/zend_test/
H A Dtest.c169 zval *zv; in ZEND_FUNCTION() local
171 if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &zv) == FAILURE) { in ZEND_FUNCTION()
175 if (!Z_REFCOUNTED_P(zv)) { in ZEND_FUNCTION()
180 Z_ADDREF_P(zv); in ZEND_FUNCTION()
/php-src/ext/curl/
H A Dmulti.c57 #define Z_CURL_MULTI_P(zv) curl_multi_from_obj(Z_OBJ_P(zv)) argument

Completed in 204 milliseconds

123456789