Lines Matching refs:uncompressed_data

575 		net->uncompressed_data = mysqlnd_create_read_buffer(decompressed_size);  in MYSQLND_METHOD()
576 …retval = net->data->m.decode(net->uncompressed_data->data, decompressed_size, compressed_data, net… in MYSQLND_METHOD()
582 net->uncompressed_data = mysqlnd_create_read_buffer(net_payload_size); in MYSQLND_METHOD()
583 …if (FAIL == net->data->m.network_read_ex(net, net->uncompressed_data->data, net_payload_size, conn… in MYSQLND_METHOD()
600 MYSQLND_METHOD(mysqlnd_net, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_… 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()
631 error = compress(compress_buffer, &tmp_complen, uncompressed_data, 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()
1028 net->uncompressed_data->free_buffer(&net->uncompressed_data); in MYSQLND_METHOD()