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() 173 out_fp_ = stdout; in ProcessFile() 175 out_fp_ = fopen(output_filename_.c_str(), output_binary_mode_ ? "web+" : "we+"); in ProcessFile() 176 if (out_fp_ == nullptr) { in ProcessFile() 199 FILE* out_fp_ = nullptr; member in simpleperf::__anonc541a1a50111::RecordFileProcessor 246 stat_.Dump(out_fp_); in Process() 289 fprintf(out_fp_, "sample_time: %" PRIu64 "\n", r.Timestamp()); in UnwindRecord() 290 DumpUnwindingResult(unwinder_->GetUnwindingResult(), out_fp_); in UnwindRecord() 295 fprintf(out_fp_, "ip_%zu: 0x%" PRIx64 "\n", id, entry.ip); in UnwindRecord() [all …]
|
D | cmd_report_sample.cpp | 48 explicit ProtobufFileWriter(FILE* out_fp) : out_fp_(out_fp) {} in ProtobufFileWriter() 51 return fwrite(buffer, size, 1, out_fp_) == 1; in Write() 55 FILE* out_fp_; member in simpleperf::__anon69c985670111::ProtobufFileWriter
|