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.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) {
704 unsigned char tmpBuf[32768]; local
713 readSize = sizeof(tmpBuf);
717 count = fread(tmpBuf, 1, readSize, srcFp);
724 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
726 if (fwrite(tmpBuf,
[all...]

Completed in 320 milliseconds