Home | History | Annotate | Download | only in aapt

Lines Matching full:dstfp

642  * 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)
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,
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,
723 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
735 * Compress all of the data in "srcFp" and write it to "dstFp".
737 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
740 status_t ZipFile::compressFpToFp(FILE* dstFp, FILE* srcFp,
841 if (fwrite(outBuf, 1, zstream.next_out - outBuf, dstFp) !=