Lines Matching refs:zv

57 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
64 DBG_INF_FMT("zv=%p byte_count=%u", zv, byte_count); 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()
116 ZVAL_LONG(zv, (zend_long) lval); /* the cast is safe, we are in the range */ in ps_fetch_from_1_to_8_bytes()
121 ZVAL_STRINGL(zv, tmp, tmp_len); in ps_fetch_from_1_to_8_bytes()
131 ps_fetch_null(zval *zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_… in ps_fetch_null() argument
133 ZVAL_NULL(zv); in ps_fetch_null()
140 ps_fetch_int8(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend… in ps_fetch_int8() argument
142 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 1); in ps_fetch_int8()
149 ps_fetch_int16(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zen… in ps_fetch_int16() argument
151 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 2); in ps_fetch_int16()
158 ps_fetch_int32(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zen… in ps_fetch_int32() argument
160 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 4); in ps_fetch_int32()
167 ps_fetch_int64(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zen… in ps_fetch_int64() argument
169 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 8); in ps_fetch_int64()
176 ps_fetch_float(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zen… in ps_fetch_float() argument
191 ZVAL_DOUBLE(zv, dval); in ps_fetch_float()
199 ps_fetch_double(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const ze… in ps_fetch_double() argument
204 ZVAL_DOUBLE(zv, value); in ps_fetch_double()
214 ps_fetch_time(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend… in ps_fetch_time() argument
262 ZVAL_STRINGL(zv, value, length); in ps_fetch_time()
271 ps_fetch_date(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend… in ps_fetch_date() argument
299 ZVAL_STRINGL(zv, value, length); in ps_fetch_date()
308 ps_fetch_datetime(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const … in ps_fetch_datetime() argument
359 ZVAL_STRINGL(zv, value, length); in ps_fetch_datetime()
368 ps_fetch_string(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const ze… in ps_fetch_string() argument
378 ZVAL_STRINGL(zv, (char *)*row, length); in ps_fetch_string()
388 ps_fetch_bit(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_… in ps_fetch_bit() argument
391 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, length); in ps_fetch_bit()
612 zval *parameter = &stmt->param_bind[i].zv; in mysqlnd_stmt_execute_prepare_param_types()
664 zval *parameter = &stmt->param_bind[i].zv; in mysqlnd_stmt_execute_store_types()
710 zval *bind_var, *the_var = &stmt->param_bind[i].zv; in mysqlnd_stmt_execute_calculate_param_values_size()
720 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()
798 zval *data, *parameter = &stmt->param_bind[i].zv; in mysqlnd_stmt_execute_store_param_values()