Lines Matching refs:zv

55 ps_fetch_from_1_to_8_bytes(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_le…  in ps_fetch_from_1_to_8_bytes()  argument
60 DBG_INF_FMT("zv=%p byte_count=%u", zv, byte_count); in ps_fetch_from_1_to_8_bytes()
77 ZVAL_STR(zv, zend_strpprintf(0, "%0*" PRIu64, (int) field->length, uval)); in ps_fetch_from_1_to_8_bytes()
82 ZVAL_STR(zv, zend_u64_to_str(uval)); in ps_fetch_from_1_to_8_bytes()
87 ZVAL_LONG(zv, (zend_long) uval); /* the cast is safe, we are in the range */ in ps_fetch_from_1_to_8_bytes()
90 ZVAL_STR(zv, zend_u64_to_str(uval)); in ps_fetch_from_1_to_8_bytes()
111 ZVAL_STR(zv, zend_i64_to_str(lval)); in ps_fetch_from_1_to_8_bytes()
115 ZVAL_LONG(zv, (zend_long) lval); /* the cast is safe, we are in the range */ in ps_fetch_from_1_to_8_bytes()
127 ps_fetch_null(zval *zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_… in ps_fetch_null() argument
129 ZVAL_NULL(zv); in ps_fetch_null()
136 ps_fetch_int8(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend… in ps_fetch_int8() argument
138 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 1); in ps_fetch_int8()
145 ps_fetch_int16(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zen… in ps_fetch_int16() argument
147 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 2); in ps_fetch_int16()
154 ps_fetch_int32(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zen… in ps_fetch_int32() argument
156 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 4); in ps_fetch_int32()
163 ps_fetch_int64(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zen… in ps_fetch_int64() argument
165 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 8); in ps_fetch_int64()
172 ps_fetch_float(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zen… in ps_fetch_float() argument
187 ZVAL_DOUBLE(zv, dval); in ps_fetch_float()
195 ps_fetch_double(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const ze… in ps_fetch_double() argument
200 ZVAL_DOUBLE(zv, value); in ps_fetch_double()
210 ps_fetch_time(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend… in ps_fetch_time() argument
241 ZVAL_STR(zv, zend_strpprintf(0, "%s%02u:%02u:%02u.%0*u", in ps_fetch_time()
245 ZVAL_STR(zv, zend_strpprintf(0, "%s%02u:%02u:%02u", in ps_fetch_time()
255 ps_fetch_date(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend… in ps_fetch_date() argument
279 ZVAL_STR(zv, zend_strpprintf(0, "%04u-%02u-%02u", t.year, t.month, t.day)); in ps_fetch_date()
287 ps_fetch_datetime(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const … in ps_fetch_datetime() argument
319 ZVAL_STR(zv, zend_strpprintf(0, "%04u-%02u-%02u %02u:%02u:%02u.%0*u", in ps_fetch_datetime()
323 ZVAL_STR(zv, zend_strpprintf(0, "%04u-%02u-%02u %02u:%02u:%02u", in ps_fetch_datetime()
333 ps_fetch_string(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const ze… in ps_fetch_string() argument
339 ZVAL_STRINGL_FAST(zv, (char *)*row, length); in ps_fetch_string()
349 ps_fetch_bit(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_… in ps_fetch_bit() argument
352 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, length); in ps_fetch_bit()
543 zval *parameter = &stmt->param_bind[i].zv; in mysqlnd_stmt_execute_prepare_param_types()
595 zval *parameter = &stmt->param_bind[i].zv; in mysqlnd_stmt_execute_store_types()
641 zval *bind_var, *the_var = &stmt->param_bind[i].zv; in mysqlnd_stmt_execute_calculate_param_values_size()
651 if (Z_ISREF(stmt->param_bind[j].zv) && Z_REFVAL(stmt->param_bind[j].zv) == the_var) { in mysqlnd_stmt_execute_calculate_param_values_size()
732 zval *data, *parameter = &stmt->param_bind[i].zv; in mysqlnd_stmt_execute_store_param_values()