Home | History | Annotate | Download | only in aapt

Lines Matching defs:outBuf

746     unsigned char* outBuf = NULL;
756 outBuf = new unsigned char[kBufSize];
757 if (inBuf == NULL || outBuf == NULL) {
771 zstream.next_out = outBuf;
840 ALOGV("+++ writing %d bytes\n", (int) (zstream.next_out - outBuf));
841 if (fwrite(outBuf, 1, zstream.next_out - outBuf, dstFp) !=
842 (size_t)(zstream.next_out - outBuf))
845 (int) (zstream.next_out - outBuf));
849 zstream.next_out = outBuf;
863 delete[] outBuf;