Home
last modified time | relevance | path

Searched refs:uncompressed_data (Results 1 – 3 of 3) sorted by relevance

/PHP-7.2/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c215 pfc->data->uncompressed_data = mysqlnd_create_read_buffer(decompressed_size); in MYSQLND_METHOD()
222 pfc->data->uncompressed_data = mysqlnd_create_read_buffer(net_payload_size); in MYSQLND_METHOD()
247 error = uncompress(uncompressed_data, &tmp_complen, compressed_data, compressed_data_len); in MYSQLND_METHOD()
265 const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len) in MYSQLND_METHOD()
300 if (pfc->data->uncompressed_data) { in MYSQLND_METHOD()
301 …size_t to_read_from_buffer = MIN(pfc->data->uncompressed_data->bytes_left(pfc->data->uncompressed_… in MYSQLND_METHOD()
304 …pfc->data->uncompressed_data->read(pfc->data->uncompressed_data, to_read_from_buffer, (zend_uchar … in MYSQLND_METHOD()
309 if (TRUE == pfc->data->uncompressed_data->is_empty(pfc->data->uncompressed_data)) { in MYSQLND_METHOD()
311 pfc->data->uncompressed_data->free_buffer(&pfc->data->uncompressed_data); in MYSQLND_METHOD()
401 if (pfc->data->uncompressed_data) { in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_net.c575 net->uncompressed_data = mysqlnd_create_read_buffer(decompressed_size); in MYSQLND_METHOD()
582 net->uncompressed_data = mysqlnd_create_read_buffer(net_payload_size); in MYSQLND_METHOD()
607 error = uncompress(uncompressed_data, &tmp_complen, compressed_data, compressed_data_len); in MYSQLND_METHOD()
625 const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len) in MYSQLND_METHOD()
660 if (net->uncompressed_data) { in MYSQLND_METHOD()
661 …size_t to_read_from_buffer = MIN(net->uncompressed_data->bytes_left(net->uncompressed_data), to_re… in MYSQLND_METHOD()
664 net->uncompressed_data->read(net->uncompressed_data, to_read_from_buffer, (zend_uchar *) p); in MYSQLND_METHOD()
669 if (TRUE == net->uncompressed_data->is_empty(net->uncompressed_data)) { in MYSQLND_METHOD()
671 net->uncompressed_data->free_buffer(&net->uncompressed_data); in MYSQLND_METHOD()
1027 if (net->uncompressed_data) { in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_structs.h1078 typedef enum_func_status (*func_mysqlnd_pfc__decode)(zend_uchar * uncompressed_data, const size_t u…
1079 …ress_buffer, size_t * compress_buffer_len, const zend_uchar * const uncompressed_data, const size_…
1113 MYSQLND_READ_BUFFER * uncompressed_data; member

Completed in 29 milliseconds