Home | History | Annotate | Download | only in hprof-conv

Lines Matching defs:out

18  * Strip Android-specific records out of hprof data, back-converting from
261 static int ebWriteData(ExpandBuf* pBuf, FILE* out)
268 actual = fwrite(pBuf->storage, 1, pBuf->curLen, out);
438 * data to "out".
440 static int processHeapDump(ExpandBuf* pBuf, FILE* out, int flags)
591 if (ebWriteData(pOutBuf, out) != 0)
604 static int filterData(FILE* in, FILE* out, int flags)
632 if (ebWriteData(pBuf, out) != 0)
642 if (ebWriteData(pBuf, out) != 0)
683 if (processHeapDump(pBuf, out, flags) != 0)
689 if (ebWriteData(pBuf, out) != 0)
712 FILE* out = NULL;
733 } else if (!out) {
734 out = fopen_or_default(arg, "wb", stdout);
740 if (in == NULL || out == NULL) {
744 res = filterData(in, out, flags);
769 if (out != stdout)
770 fclose(out);