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

/frameworks/base/tools/aapt/
H A DZipFile.h228 /* copy all of "srcFp" into "dstFp" */
229 status_t copyFpToFp(FILE* dstFp, FILE* srcFp, unsigned long* pCRC32);
230 /* copy all of "data" into "dstFp" */
231 status_t copyDataToFp(FILE* dstFp,
233 /* copy some of "srcFp" into "dstFp" */
234 status_t copyPartialFpToFp(FILE* dstFp, FILE* srcFp, long length,
238 /* compress all of "srcFp" into "dstFp", using Deflate */
239 status_t compressFpToFp(FILE* dstFp, FILE* srcFp,
H A DZipFile.cpp642 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
645 status_t ZipFile::copyFpToFp(FILE* dstFp, FILE* srcFp, unsigned long* pCRC32) argument
654 if (ferror(srcFp) || ferror(dstFp))
661 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
673 * On exit, "dstFp" will be seeked immediately past the data.
675 status_t ZipFile::copyDataToFp(FILE* dstFp, argument
681 if (fwrite(data, 1, size, dstFp) != size) {
695 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
698 status_t ZipFile::copyPartialFpToFp(FILE* dstFp, FILE* srcFp, long length, argument
723 if (fwrite(tmpBuf, 1, count, dstFp) !
740 compressFpToFp(FILE* dstFp, FILE* srcFp, const void* data, size_t size, unsigned long* pCRC32) argument
[all...]

Completed in 258 milliseconds