Lines Matching defs:out
18 * Strip Android-specific records out of hprof data, back-converting from
247 static int ebWriteData(ExpandBuf* pBuf, FILE* out)
254 actual = fwrite(pBuf->storage, 1, pBuf->curLen, out);
424 * data to "out".
426 static int processHeapDump(ExpandBuf* pBuf, FILE* out)
560 if (ebWriteData(pOutBuf, out) != 0)
573 static int filterData(FILE* in, FILE* out)
601 if (ebWriteData(pBuf, out) != 0)
611 if (ebWriteData(pBuf, out) != 0)
653 if (processHeapDump(pBuf, out) != 0)
659 if (ebWriteData(pBuf, out) != 0)
677 FILE* out = stdout;
707 out = fopen(argv[2], "wb");
708 if (out == NULL) {
717 cc = filterData(in, out);
721 if (out != stdout)
722 fclose(out);