Searched refs:tmpBuf (Results 1 - 2 of 2) 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.cpp647 unsigned char tmpBuf[32768]; local
653 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
659 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
661 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
701 unsigned char tmpBuf[32768]; local
710 readSize = sizeof(tmpBuf);
714 count = fread(tmpBuf, 1, readSize, srcFp);
721 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
723 if (fwrite(tmpBuf,
[all...]

Completed in 66 milliseconds