Home
last modified time | relevance | path

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

/base/hiviewdfx/hidumper/frameworks/native/src/executor/
Dzip_output.cpp78 if ((srcBuffer->offset + size) > MAX_COMPRESS_BUFFER_SIZE) { in Execute()
83 if (size > MAX_COMPRESS_BUFFER_SIZE) { in Execute()
90 MAX_COMPRESS_BUFFER_SIZE - srcBuffer->offset, content, content_size) != EOK) { in Execute()
145 if ((srcBuffer->offset + remain_size) > MAX_COMPRESS_BUFFER_SIZE) { in CompressBigLine()
146 process_size = MAX_COMPRESS_BUFFER_SIZE - srcBuffer->offset; in CompressBigLine()
149 MAX_COMPRESS_BUFFER_SIZE - srcBuffer->offset, in CompressBigLine()
/base/hiviewdfx/hidumper/frameworks/native/include/util/
Ddump_compressor.h23 const uint32_t MAX_COMPRESS_BUFFER_SIZE = 32 * 1024; variable
29 char content[MAX_COMPRESS_BUFFER_SIZE] = { 0 };
/base/hiviewdfx/hidumper/frameworks/native/src/util/
Ddump_compressor.cpp83 MAX_COMPRESS_BUFFER_SIZE - destBuffer->offset, zData_, dstPos) != EOK) { in Compress()