Lines Matching refs:pack_len

57 …_fetch_from_1_to_8_bytes(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len,  in ps_fetch_from_1_to_8_bytes()  argument
131 ps_fetch_null(zval *zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_… in ps_fetch_null() argument
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
199 ps_fetch_double(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const ze… in ps_fetch_double() argument
214 ps_fetch_time(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend… in ps_fetch_time() argument
271 ps_fetch_date(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend… in ps_fetch_date() argument
308 ps_fetch_datetime(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const … in ps_fetch_datetime() argument
368 ps_fetch_string(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const ze… in ps_fetch_string() argument
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()
401 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NULL].pack_len = 0; in _mysqlnd_init_ps_fetch_subsystem()
406 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TINY].pack_len = 1; in _mysqlnd_init_ps_fetch_subsystem()
411 mysqlnd_ps_fetch_functions[MYSQL_TYPE_SHORT].pack_len = 2; in _mysqlnd_init_ps_fetch_subsystem()
416 mysqlnd_ps_fetch_functions[MYSQL_TYPE_YEAR].pack_len = 2; in _mysqlnd_init_ps_fetch_subsystem()
421 mysqlnd_ps_fetch_functions[MYSQL_TYPE_INT24].pack_len = 4; in _mysqlnd_init_ps_fetch_subsystem()
426 mysqlnd_ps_fetch_functions[MYSQL_TYPE_LONG].pack_len = 4; in _mysqlnd_init_ps_fetch_subsystem()
431 mysqlnd_ps_fetch_functions[MYSQL_TYPE_LONGLONG].pack_len= 8; in _mysqlnd_init_ps_fetch_subsystem()
436 mysqlnd_ps_fetch_functions[MYSQL_TYPE_FLOAT].pack_len = 4; in _mysqlnd_init_ps_fetch_subsystem()
441 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DOUBLE].pack_len = 8; in _mysqlnd_init_ps_fetch_subsystem()
446 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TIME].pack_len = MYSQLND_PS_SKIP_RESULT_W_LEN; in _mysqlnd_init_ps_fetch_subsystem()
451 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DATE].pack_len = MYSQLND_PS_SKIP_RESULT_W_LEN; in _mysqlnd_init_ps_fetch_subsystem()
456 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NEWDATE].pack_len = MYSQLND_PS_SKIP_RESULT_W_LEN; in _mysqlnd_init_ps_fetch_subsystem()
461 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DATETIME].pack_len= MYSQLND_PS_SKIP_RESULT_W_LEN; in _mysqlnd_init_ps_fetch_subsystem()
466 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TIMESTAMP].pack_len= MYSQLND_PS_SKIP_RESULT_W_LEN; in _mysqlnd_init_ps_fetch_subsystem()
471 mysqlnd_ps_fetch_functions[MYSQL_TYPE_JSON].pack_len= MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
477 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TINY_BLOB].pack_len= MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
483 mysqlnd_ps_fetch_functions[MYSQL_TYPE_BLOB].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
489 mysqlnd_ps_fetch_functions[MYSQL_TYPE_MEDIUM_BLOB].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
495 mysqlnd_ps_fetch_functions[MYSQL_TYPE_LONG_BLOB].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
501 mysqlnd_ps_fetch_functions[MYSQL_TYPE_BIT].pack_len = 8; in _mysqlnd_init_ps_fetch_subsystem()
506 mysqlnd_ps_fetch_functions[MYSQL_TYPE_VAR_STRING].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
511 mysqlnd_ps_fetch_functions[MYSQL_TYPE_VARCHAR].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
516 mysqlnd_ps_fetch_functions[MYSQL_TYPE_STRING].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
521 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DECIMAL].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
526 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NEWDECIMAL].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
531 mysqlnd_ps_fetch_functions[MYSQL_TYPE_ENUM].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
535 mysqlnd_ps_fetch_functions[MYSQL_TYPE_SET].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
539 mysqlnd_ps_fetch_functions[MYSQL_TYPE_GEOMETRY].pack_len= MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()