Searched defs:tmpBuf (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/cmds/screenrecord/
H A DOverlay.cpp271 char tmpBuf[5]; local
272 snprintf(tmpBuf, sizeof(tmpBuf), ".%03d", msec);
273 strlcat(buf, tmpBuf, bufLen);
/frameworks/base/tools/aapt/
H A DZipFile.cpp648 unsigned char tmpBuf[32768]; local
654 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
660 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
662 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
702 unsigned char tmpBuf[32768]; local
711 readSize = sizeof(tmpBuf);
715 count = fread(tmpBuf, 1, readSize, srcFp);
722 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
724 if (fwrite(tmpBuf,
[all...]
/frameworks/base/tools/aapt2/
H A DZipFile.cpp658 unsigned char tmpBuf[32768]; local
664 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
670 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
672 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
712 unsigned char tmpBuf[32768]; local
721 readSize = sizeof(tmpBuf);
725 count = fread(tmpBuf, 1, readSize, srcFp);
732 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
734 if (fwrite(tmpBuf,
[all...]

Completed in 241 milliseconds