Home
last modified time | relevance | path

Searched refs:zv (Results 26 – 50 of 156) sorted by relevance

1234567

/PHP-7.1/sapi/apache2handler/
H A Dapache_config.c120 static zend_bool should_overwrite_per_dir_entry(HashTable *target_ht, zval *zv, zend_hash_key *hash… in should_overwrite_per_dir_entry() argument
122 php_dir_entry *new_per_dir_entry = Z_PTR_P(zv); in should_overwrite_per_dir_entry()
138 void config_entry_ctor(zval *zv) in config_entry_ctor() argument
140 php_dir_entry *pe = (php_dir_entry*)Z_PTR_P(zv); in config_entry_ctor()
144 ZVAL_PTR(zv, npe); in config_entry_ctor()
224 static void config_entry_dtor(zval *zv) in config_entry_dtor() argument
226 free((php_dir_entry*)Z_PTR_P(zv)); in config_entry_dtor()
/PHP-7.1/ext/opcache/
H A Dzend_persist_calc.c263 static void zend_persist_op_array_calc(zval *zv) in zend_persist_op_array_calc() argument
265 zend_op_array *op_array = Z_PTR_P(zv); in zend_persist_op_array_calc()
271 Z_PTR_P(zv) = old_op_array; in zend_persist_op_array_calc()
274 zend_persist_op_array_calc_ex(Z_PTR_P(zv)); in zend_persist_op_array_calc()
279 zend_persist_op_array_calc_ex(Z_PTR_P(zv)); in zend_persist_op_array_calc()
283 static void zend_persist_property_info_calc(zval *zv) in zend_persist_property_info_calc() argument
285 zend_property_info *prop = Z_PTR_P(zv); in zend_persist_property_info_calc()
297 static void zend_persist_class_constant_calc(zval *zv) in zend_persist_class_constant_calc() argument
299 zend_class_constant *c = Z_PTR_P(zv); in zend_persist_class_constant_calc()
312 static void zend_persist_class_entry_calc(zval *zv) in zend_persist_class_entry_calc() argument
[all …]
/PHP-7.1/ext/simplexml/
H A Dphp_simplexml_exports.h49 #define Z_SXEOBJ_P(zv) php_sxe_fetch_object(Z_OBJ_P((zv))) argument
/PHP-7.1/ext/intl/formatter/
H A Dformatter_class.h35 #define Z_INTL_NUMBERFORMATTER_P(zv) php_intl_number_format_fetch_object(Z_OBJ_P(zv)) argument
/PHP-7.1/ext/mysqlnd/
H A Dmysqlnd_ps.h24 typedef void (*ps_field_fetch_func)(zval * zv, const MYSQLND_FIELD * const field, const unsigned in…
43 void ps_fetch_from_1_to_8_bytes(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pa…
/PHP-7.1/ext/intl/msgformat/
H A Dmsgformat_class.h43 #define Z_INTL_MESSAGEFORMATTER_P(zv) php_intl_messageformatter_fetch_object(Z_OBJ_P(zv)) argument
/PHP-7.1/ext/intl/dateformat/
H A Ddateformat_class.h38 #define Z_INTL_DATEFORMATTER_P(zv) php_intl_dateformatter_fetch_object(Z_OBJ_P(zv)) argument
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_utils.h88 …parse_var_func)(char *name, size_t len, char *keyname, size_t keylen, HashTable *parent, zval *zv);
89 …unc)(char *name, size_t len, char *keyname, size_t keylen, HashTable *parent, zval *zv, void *arg);
96 PHPDBG_API void phpdbg_xml_var_dump(zval *zv);
98 char *phpdbg_short_zval_print(zval *zv, int maxlen);
/PHP-7.1/ext/intl/resourcebundle/
H A Dresourcebundle_class.h38 #define Z_INTL_RESOURCEBUNDLE_P(zv) php_intl_resourcebundle_fetch_object(Z_OBJ_P(zv)) argument
/PHP-7.1/ext/xmlreader/
H A Dphp_xmlreader.h58 #define Z_XMLREADER_P(zv) php_xmlreader_fetch_object(Z_OBJ_P((zv))) argument
/PHP-7.1/Zend/
H A Dzend_ast.c66 ZVAL_COPY_VALUE(&ast->val, zv); in zend_ast_create_zval_with_lineno()
279 if (Z_OPT_CONSTANT_P(zv)) { in zend_ast_evaluate()
285 ZVAL_COPY(result, zv); in zend_ast_evaluate()
287 ZVAL_COPY_VALUE(result, zv); in zend_ast_evaluate()
294 ZVAL_COPY(result, zv); in zend_ast_evaluate()
673 if (Z_TYPE_P(zv) == IS_STRING) { in zend_ast_export_name()
743 zend_ast_valid_var_name(Z_STRVAL_P(zv), Z_STRLEN_P(zv))) { in zend_ast_export_var()
917 ZVAL_DEREF(zv); in zend_ast_export_zval()
918 switch (Z_TYPE_P(zv)) { in zend_ast_export_zval()
963 smart_str_appendl(str, Z_STRVAL_P(zv), Z_STRLEN_P(zv)); in zend_ast_export_zval()
[all …]
H A Dzend_variables.h34 #define zval_dtor_func(zv) _zval_dtor_func(zv ZEND_FILE_LINE_CC) argument
35 #define zval_copy_ctor_func(zv) _zval_copy_ctor_func(zv ZEND_FILE_LINE_CC) argument
H A Dzend_object_handlers.c102 zval zv; in rebuild_object_properties() local
323 zval *zv; in zend_get_property_offset() local
344 if (EXPECTED(zv != NULL)) { in zend_get_property_offset()
408 zval *zv; in zend_get_property_info() local
425 if (EXPECTED(zv != NULL)) { in zend_get_property_info()
527 zval *zv; in zend_get_property_guard() local
551 ZVAL_ARR(zv, guards); in zend_get_property_guard()
554 guards = Z_ARRVAL_P(zv); in zend_get_property_guard()
557 if (zv != NULL) { in zend_get_property_guard()
563 ZVAL_STR_COPY(zv, member); in zend_get_property_guard()
[all …]
/PHP-7.1/ext/intl/transliterator/
H A Dtransliterator_class.h40 #define Z_INTL_TRANSLITERATOR_P(zv) php_intl_transliterator_fetch_object(Z_OBJ_P(zv)) argument
/PHP-7.1/ext/oci8/
H A Doci8_statement.c936 ZVAL_DEREF(zv); in php_oci_bind_pre_exec()
967 if (Z_TYPE_P(zv) == IS_RESOURCE || Z_TYPE_P(zv) == IS_OBJECT) { in php_oci_bind_pre_exec()
997 ZVAL_DEREF(zv); in php_oci_bind_post_exec()
1002 zval_ptr_dtor(zv); in php_oci_bind_post_exec()
1003 ZVAL_NULL(zv); in php_oci_bind_post_exec()
1006 && Z_STRVAL_P(zv)[ Z_STRLEN_P(zv) ] != '\0') { in php_oci_bind_post_exec()
1015 Z_STR_P(zv) = zend_string_extend(Z_STR_P(zv), Z_STRLEN_P(zv)+1, 0); in php_oci_bind_post_exec()
1017 ZVAL_NEW_STR(zv, zend_string_extend(Z_STR_P(zv), Z_STRLEN_P(zv)+1, 0)); in php_oci_bind_post_exec()
1019 Z_STRVAL_P(zv)[ Z_STRLEN_P(zv) ] = '\0'; in php_oci_bind_post_exec() local
1025 SEPARATE_ARRAY(zv); in php_oci_bind_post_exec()
[all …]
/PHP-7.1/ext/intl/timezone/
H A Dtimezone_class.cpp288 zval zv; in TimeZone_get_debug_info() local
305 ZVAL_FALSE(&zv); in TimeZone_get_debug_info()
306 zend_hash_str_update(debug_info, "valid", sizeof("valid") - 1, &zv); in TimeZone_get_debug_info()
310 ZVAL_TRUE(&zv); in TimeZone_get_debug_info()
311 zend_hash_str_update(debug_info, "valid", sizeof("valid") - 1, &zv); in TimeZone_get_debug_info()
319 ZVAL_NEW_STR(&zv, u8str); in TimeZone_get_debug_info()
320 zend_hash_str_update(debug_info, "id", sizeof("id") - 1, &zv); in TimeZone_get_debug_info()
329 ZVAL_LONG(&zv, (zend_long)rawOffset); in TimeZone_get_debug_info()
330 zend_hash_str_update(debug_info,"rawOffset", sizeof("rawOffset") - 1, &zv); in TimeZone_get_debug_info()
331 ZVAL_LONG(&zv, (zend_long)(rawOffset + dstOffset)); in TimeZone_get_debug_info()
[all …]
H A Dtimezone_class.h50 #define Z_INTL_TIMEZONE_P(zv) php_intl_timezone_fetch_object(Z_OBJ_P(zv)) argument
/PHP-7.1/ext/intl/calendar/
H A Dcalendar_class.cpp149 zval zv, in Calendar_get_debug_info() local
164 ZVAL_FALSE(&zv); in Calendar_get_debug_info()
165 zend_hash_str_update(debug_info, "valid", sizeof("valid") - 1, &zv); in Calendar_get_debug_info()
168 ZVAL_TRUE(&zv); in Calendar_get_debug_info()
169 zend_hash_str_update(debug_info, "valid", sizeof("valid") - 1, &zv); in Calendar_get_debug_info()
171 ZVAL_STRING(&zv, const_cast<char*>(cal->getType())); in Calendar_get_debug_info()
172 zend_hash_str_update(debug_info, "type", sizeof("type") - 1, &zv); in Calendar_get_debug_info()
195 ZVAL_STRING(&zv, const_cast<char*>(locale.getName())); in Calendar_get_debug_info()
196 zend_hash_str_update(debug_info, "locale", sizeof("locale") - 1, &zv); in Calendar_get_debug_info()
198 ZVAL_STRING(&zv, const_cast<char*>(u_errorName(uec))); in Calendar_get_debug_info()
[all …]
H A Dcalendar_class.h44 #define Z_INTL_CALENDAR_P(zv) php_intl_calendar_fetch_object(Z_OBJ_P(zv)) argument
/PHP-7.1/ext/pdo_mysql/
H A Dpdo_mysql.c65 static MYSQLND * pdo_mysql_convert_zv_to_mysqlnd(zval * zv) in ZEND_GET_MODULE()
67 if (Z_TYPE_P(zv) == IS_OBJECT && instanceof_function(Z_OBJCE_P(zv), php_pdo_get_dbh_ce())) { in ZEND_GET_MODULE()
68 pdo_dbh_t * dbh = Z_PDO_DBH_P(zv); in ZEND_GET_MODULE()
/PHP-7.1/ext/intl/collator/
H A Dcollator_class.h49 #define Z_INTL_COLLATOR_P(zv) php_intl_collator_fetch_object(Z_OBJ_P(zv)) argument
/PHP-7.1/ext/intl/breakiterator/
H A Dbreakiterator_class.h47 #define Z_INTL_BREAKITERATOR_P(zv) php_intl_breakiterator_fetch_object(Z_OBJ_P(zv)) argument
/PHP-7.1/ext/soap/
H A Dphp_packet_soap.c196 zval zv; in parse_packet_soap() local
197 master_to_zval(&zv, get_conversion(IS_STRING), tmp); in parse_packet_soap()
198 faultstring = Z_STR(zv); in parse_packet_soap()
203 zval zv; in parse_packet_soap() local
204 master_to_zval(&zv, get_conversion(IS_STRING), tmp); in parse_packet_soap()
205 faultactor = Z_STR(zv); in parse_packet_soap()
226 zval zv; in parse_packet_soap() local
227 master_to_zval(&zv, get_conversion(IS_STRING), tmp); in parse_packet_soap()
228 faultstring = Z_STR(zv); in parse_packet_soap()
/PHP-7.1/ext/intl/spoofchecker/
H A Dspoofchecker_class.h42 #define Z_INTL_SPOOFCHECKER_P(zv) php_intl_spoofchecker_fetch_object((Z_OBJ_P(zv))) argument
/PHP-7.1/ext/zip/
H A Dphp_zip.h75 #define Z_ZIP_P(zv) php_zip_fetch_object(Z_OBJ_P((zv))) argument

Completed in 68 milliseconds

1234567