Lines Matching refs:field

56 void ps_fetch_from_1_to_8_bytes(zval *zv, const MYSQLND_FIELD * const field,  in ps_fetch_from_1_to_8_bytes()  argument
62 zend_bool is_bit = field->type == MYSQL_TYPE_BIT; in ps_fetch_from_1_to_8_bytes()
65 if (field->flags & UNSIGNED_FLAG) { in ps_fetch_from_1_to_8_bytes()
139 void ps_fetch_null(zval *zv, const MYSQLND_FIELD * const field, in ps_fetch_null() argument
150 void ps_fetch_int8(zval *zv, const MYSQLND_FIELD * const field, in ps_fetch_int8() argument
154 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, as_unicode, 1 TSRMLS_CC); in ps_fetch_int8()
161 void ps_fetch_int16(zval *zv, const MYSQLND_FIELD * const field, in ps_fetch_int16() argument
165 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, as_unicode, 2 TSRMLS_CC); in ps_fetch_int16()
172 void ps_fetch_int32(zval *zv, const MYSQLND_FIELD * const field, in ps_fetch_int32() argument
176 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, as_unicode, 4 TSRMLS_CC); in ps_fetch_int32()
183 void ps_fetch_int64(zval *zv, const MYSQLND_FIELD * const field, in ps_fetch_int64() argument
187 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, as_unicode, 8 TSRMLS_CC); in ps_fetch_int64()
194 void ps_fetch_float(zval *zv, const MYSQLND_FIELD * const field, in ps_fetch_float() argument
211 void ps_fetch_double(zval *zv, const MYSQLND_FIELD * const field, in ps_fetch_double() argument
228 void ps_fetch_time(zval *zv, const MYSQLND_FIELD * const field, in ps_fetch_time() argument
285 void ps_fetch_date(zval *zv, const MYSQLND_FIELD * const field, in ps_fetch_date() argument
336 void ps_fetch_datetime(zval *zv, const MYSQLND_FIELD * const field, in ps_fetch_datetime() argument
395 void ps_fetch_string(zval *zv, const MYSQLND_FIELD * const field, in ps_fetch_string() argument
407 if (field->charsetnr == MYSQLND_BINARY_CHARSET_NR) { in ps_fetch_string()
427 void ps_fetch_bit(zval *zv, const MYSQLND_FIELD * const field, in ps_fetch_bit() argument
432 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, as_unicode, length TSRMLS_CC); in ps_fetch_bit()