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

/build/make/tools/zipalign/
H A DZipFile.h221 /* copy all of "srcFp" into "dstFp" */
222 status_t copyFpToFp(FILE* dstFp, FILE* srcFp, uint32_t* pCRC32);
226 /* copy some of "srcFp" into "dstFp" */
227 status_t copyPartialFpToFp(FILE* dstFp, FILE* srcFp, long length,
231 /* compress all of "srcFp" into "dstFp", using Deflate */
232 status_t compressFpToFp(FILE* dstFp, FILE* srcFp,
H A DZipFile.cpp751 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
754 status_t ZipFile::copyFpToFp(FILE* dstFp, FILE* srcFp, uint32_t* pCRC32) argument
762 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
763 if (ferror(srcFp) || ferror(dstFp))
804 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
807 status_t ZipFile::copyPartialFpToFp(FILE* dstFp, FILE* srcFp, long length, argument
823 count = fread(tmpBuf, 1, readSize, srcFp);
844 * Compress all of the data in "srcFp" and write it to "dstFp".
846 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
849 status_t ZipFile::compressFpToFp(FILE* dstFp, FILE* srcFp, argument
[all...]
/build/tools/zipalign/
H A DZipFile.h221 /* copy all of "srcFp" into "dstFp" */
222 status_t copyFpToFp(FILE* dstFp, FILE* srcFp, uint32_t* pCRC32);
226 /* copy some of "srcFp" into "dstFp" */
227 status_t copyPartialFpToFp(FILE* dstFp, FILE* srcFp, long length,
231 /* compress all of "srcFp" into "dstFp", using Deflate */
232 status_t compressFpToFp(FILE* dstFp, FILE* srcFp,
H A DZipFile.cpp751 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
754 status_t ZipFile::copyFpToFp(FILE* dstFp, FILE* srcFp, uint32_t* pCRC32) argument
762 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
763 if (ferror(srcFp) || ferror(dstFp))
804 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
807 status_t ZipFile::copyPartialFpToFp(FILE* dstFp, FILE* srcFp, long length, argument
823 count = fread(tmpBuf, 1, readSize, srcFp);
844 * Compress all of the data in "srcFp" and write it to "dstFp".
846 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
849 status_t ZipFile::compressFpToFp(FILE* dstFp, FILE* srcFp, argument
[all...]

Completed in 268 milliseconds