uncompressed_data 585 ext/mysqlnd/mysqlnd_net.c net->uncompressed_data = mysqlnd_create_read_buffer(decompressed_size); uncompressed_data 586 ext/mysqlnd/mysqlnd_net.c retval = net->data->m.decode(net->uncompressed_data->data, decompressed_size, compressed_data, net_payload_size); uncompressed_data 592 ext/mysqlnd/mysqlnd_net.c net->uncompressed_data = mysqlnd_create_read_buffer(net_payload_size); uncompressed_data 593 ext/mysqlnd/mysqlnd_net.c if (FAIL == net->data->m.network_read_ex(net, net->uncompressed_data->data, net_payload_size, conn_stats, error_info)) { uncompressed_data 610 ext/mysqlnd/mysqlnd_net.c MYSQLND_METHOD(mysqlnd_net, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, uncompressed_data 617 ext/mysqlnd/mysqlnd_net.c error = uncompress(uncompressed_data, &tmp_complen, compressed_data, compressed_data_len); uncompressed_data 635 ext/mysqlnd/mysqlnd_net.c const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len) uncompressed_data 641 ext/mysqlnd/mysqlnd_net.c error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len); uncompressed_data 670 ext/mysqlnd/mysqlnd_net.c if (net->uncompressed_data) { uncompressed_data 671 ext/mysqlnd/mysqlnd_net.c size_t to_read_from_buffer = MIN(net->uncompressed_data->bytes_left(net->uncompressed_data), to_read); uncompressed_data 674 ext/mysqlnd/mysqlnd_net.c net->uncompressed_data->read(net->uncompressed_data, to_read_from_buffer, (zend_uchar *) p); uncompressed_data 679 ext/mysqlnd/mysqlnd_net.c if (TRUE == net->uncompressed_data->is_empty(net->uncompressed_data)) { uncompressed_data 681 ext/mysqlnd/mysqlnd_net.c net->uncompressed_data->free_buffer(&net->uncompressed_data); uncompressed_data 1048 ext/mysqlnd/mysqlnd_net.c if (net->uncompressed_data) { uncompressed_data 1049 ext/mysqlnd/mysqlnd_net.c net->uncompressed_data->free_buffer(&net->uncompressed_data); uncompressed_data 290 ext/mysqlnd/mysqlnd_structs.h typedef enum_func_status (*func_mysqlnd_net__decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, const zend_uchar * const compressed_data, const size_t compressed_data_len); uncompressed_data 291 ext/mysqlnd/mysqlnd_structs.h typedef enum_func_status (*func_mysqlnd_net__encode)(zend_uchar * compress_buffer, size_t * compress_buffer_len, const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len);