Home
last modified time | relevance | path

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

/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd_net.c445 net->uncompressed_data = mysqlnd_create_read_buffer(decompressed_size TSRMLS_CC); in mysqlnd_read_compressed_packet_from_stream_and_fill_read_buffer()
452 net->uncompressed_data = mysqlnd_create_read_buffer(net_payload_size TSRMLS_CC); in mysqlnd_read_compressed_packet_from_stream_and_fill_read_buffer()
477 error = uncompress(uncompressed_data, &tmp_complen, compressed_data, compressed_data_len); in MYSQLND_METHOD()
501 error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len); in MYSQLND_METHOD()
530 if (net->uncompressed_data) { in MYSQLND_METHOD()
531 …size_t to_read_from_buffer = MIN(net->uncompressed_data->bytes_left(net->uncompressed_data), to_re… in MYSQLND_METHOD()
534 net->uncompressed_data->read(net->uncompressed_data, to_read_from_buffer, (zend_uchar *) p); in MYSQLND_METHOD()
539 if (TRUE == net->uncompressed_data->is_empty(net->uncompressed_data)) { in MYSQLND_METHOD()
541 net->uncompressed_data->free_buffer(&net->uncompressed_data TSRMLS_CC); in MYSQLND_METHOD()
849 if (net->uncompressed_data) { in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_structs.h260 typedef enum_func_status (*func_mysqlnd_net__decode)(zend_uchar * uncompressed_data, size_t uncompr…
261 …ress_buffer, size_t * compress_buffer_len, const zend_uchar * const uncompressed_data, size_t unco…
707 MYSQLND_READ_BUFFER * uncompressed_data; member

Completed in 15 milliseconds