Searched refs:kBufSize (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/tools/aapt/
H A DZipFile.cpp747 const size_t kBufSize = 32768; local
758 inBuf = new unsigned char[kBufSize];
759 outBuf = new unsigned char[kBufSize];
775 zstream.avail_out = kBufSize;
802 ALOGV("+++ reading %d bytes\n", (int)kBufSize);
804 getSize = size > kBufSize ? kBufSize : size;
809 getSize = fread(inBuf, 1, kBufSize, srcFp);
815 if (getSize < kBufSize) {
841 (zerr == Z_STREAM_END && zstream.avail_out != (uInt) kBufSize))
[all...]

Completed in 293 milliseconds