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

/frameworks/base/tools/aapt/
H A DZipFile.cpp643 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
646 status_t ZipFile::copyFpToFp(FILE* dstFp, FILE* srcFp, unsigned long* pCRC32) argument
655 if (ferror(srcFp) || ferror(dstFp))
662 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
674 * On exit, "dstFp" will be seeked immediately past the data.
676 status_t ZipFile::copyDataToFp(FILE* dstFp, argument
684 if (fwrite(data, 1, size, dstFp) != size) {
698 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
701 status_t ZipFile::copyPartialFpToFp(FILE* dstFp, FILE* srcFp, long length, argument
726 if (fwrite(tmpBuf, 1, count, dstFp) !
743 compressFpToFp(FILE* dstFp, FILE* srcFp, const void* data, size_t size, unsigned long* pCRC32) argument
[all...]

Completed in 261 milliseconds