Searched refs:dstFp (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);
223 /* copy all of "data" into "dstFp" */
224 status_t copyDataToFp(FILE* dstFp,
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
763 if (ferror(srcFp) || ferror(dstFp))
770 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
782 * On exit, "dstFp" will be seeked immediately past the data.
784 status_t ZipFile::copyDataToFp(FILE* dstFp, argument
790 if (fwrite(data, 1, size, dstFp) != size) {
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
832 if (fwrite(tmpBuf, 1, count, dstFp) !
849 compressFpToFp(FILE* dstFp, FILE* srcFp, const void* data, size_t size, uint32_t* pCRC32) 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);
223 /* copy all of "data" into "dstFp" */
224 status_t copyDataToFp(FILE* dstFp,
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
763 if (ferror(srcFp) || ferror(dstFp))
770 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
782 * On exit, "dstFp" will be seeked immediately past the data.
784 status_t ZipFile::copyDataToFp(FILE* dstFp, argument
790 if (fwrite(data, 1, size, dstFp) != size) {
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
832 if (fwrite(tmpBuf, 1, count, dstFp) !
849 compressFpToFp(FILE* dstFp, FILE* srcFp, const void* data, size_t size, uint32_t* pCRC32) argument
[all...]

Completed in 7 milliseconds