Home | History | Annotate | Download | only in aapt

Lines Matching defs:outBuf

749     unsigned char* outBuf = NULL;
759 outBuf = new unsigned char[kBufSize];
760 if (inBuf == NULL || outBuf == NULL) {
774 zstream.next_out = outBuf;
843 ALOGV("+++ writing %d bytes\n", (int) (zstream.next_out - outBuf));
844 if (fwrite(outBuf, 1, zstream.next_out - outBuf, dstFp) !=
845 (size_t)(zstream.next_out - outBuf))
848 (int) (zstream.next_out - outBuf));
852 zstream.next_out = outBuf;
866 delete[] outBuf;