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

/build/tools/zipalign/
H A DZipFile.cpp783 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
786 status_t ZipFile::copyFpToFp(FILE* dstFp, FILE* srcFp, uint32_t* pCRC32) argument
794 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
795 if (ferror(srcFp) || ferror(dstFp))
838 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
841 status_t ZipFile::copyPartialFpToFp(FILE* dstFp, FILE* srcFp, long length, argument
857 count = fread(tmpBuf, 1, readSize, srcFp);
878 * Compress all of the data in "srcFp" and write it to "dstFp".
880 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
883 status_t ZipFile::compressFpToFp(FILE* dstFp, FILE* srcFp, argument
[all...]

Completed in 4 milliseconds