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

Lines Matching defs:out

18  * Strip Android-specific records out of hprof data, back-converting from
256 static int ebWriteData(ExpandBuf* pBuf, FILE* out)
263 actual = fwrite(pBuf->storage, 1, pBuf->curLen, out);
433 * data to "out".
435 static int processHeapDump(ExpandBuf* pBuf, FILE* out, int flags)
586 if (ebWriteData(pOutBuf, out) != 0)
599 static int filterData(FILE* in, FILE* out, int flags)
627 if (ebWriteData(pBuf, out) != 0)
637 if (ebWriteData(pBuf, out) != 0)
678 if (processHeapDump(pBuf, out, flags) != 0)
684 if (ebWriteData(pBuf, out) != 0)
707 FILE* out = NULL;
728 } else if (!out) {
729 out = fopen_or_default(arg, "wb", stdout);
735 if (in == NULL || out == NULL) {
739 res = filterData(in, out, flags);
764 if (out != stdout)
765 fclose(out);