Searched refs:out_fp_ (Results 1 – 2 of 2) sorted by relevance
/system/extras/simpleperf/ |
D | cmd_debug_unwind.cpp | 126 if (out_fp_ != nullptr && out_fp_ != stdout) { in ~RecordFileProcessor() 127 fclose(out_fp_); in ~RecordFileProcessor() 175 out_fp_ = stdout; in ProcessFile() 177 out_fp_ = fopen(output_filename_.c_str(), output_binary_mode_ ? "web+" : "we+"); in ProcessFile() 178 if (out_fp_ == nullptr) { in ProcessFile() 201 FILE* out_fp_ = nullptr; member in simpleperf::__anon7f0d915e0111::RecordFileProcessor 248 stat_.Dump(out_fp_); in Process() 317 fprintf(out_fp_, "sample_time: %" PRIu64 "\n", r.Timestamp()); in UnwindRecord() 318 DumpUnwindingResult(unwinder_->GetUnwindingResult(), out_fp_); in UnwindRecord() 323 fprintf(out_fp_, "ip_%zu: 0x%" PRIx64 "\n", id, entry.ip); in UnwindRecord() [all …]
|
D | cmd_report_sample.cpp | 49 explicit ProtobufFileWriter(FILE* out_fp) : out_fp_(out_fp) {} in ProtobufFileWriter() 52 return fwrite(buffer, size, 1, out_fp_) == 1; in Write() 56 FILE* out_fp_; member in simpleperf::__anon5d136c400111::ProtobufFileWriter
|