Searched refs:buf_ (Results 1 – 3 of 3) sorted by relevance
/art/runtime/ |
D | trace.cc | 601 buf_(new uint8_t[std::max(kMinBufSize, buffer_size)]()), in Trace() 613 memset(buf_.get(), 0, kTraceHeaderLength); in Trace() 614 Append4LE(buf_.get(), kTraceMagicValue); in Trace() 615 Append2LE(buf_.get() + 4, trace_version); in Trace() 616 Append2LE(buf_.get() + 6, kTraceHeaderLength); in Trace() 617 Append8LE(buf_.get() + 8, start_time_); in Trace() 620 Append2LE(buf_.get() + 16, record_size); in Trace() 728 memcpy(data.data() + header.length(), buf_.get(), final_offset); in FinishTracing() 734 DumpBuf(buf_.get(), final_offset, clock_source_); in FinishTracing() 738 !trace_file_->WriteFully(buf_.get(), final_offset)) { in FinishTracing() [all …]
|
D | trace.h | 286 std::unique_ptr<uint8_t[]> buf_; variable
|
D | debugger.cc | 2450 buf_(buf_in) { in GetThreadFrames() 2451 expandBufAdd4BE(buf_, frame_count_); in GetThreadFrames() 2466 expandBufAdd8BE(buf_, frame_id); in GetThreadFrames() 2467 expandBufAddLocation(buf_, location); in GetThreadFrames() 2477 JDWP::ExpandBuf* buf_; in GetThreadFrames() member in art::Dbg::GetThreadFrames::GetFrameVisitor 4681 : buf_(16384 - 16), in HeapChunkContext() 4693 if (p_ > &buf_[0]) { in ~HeapChunkContext() 4731 CHECK_LE(&buf_[0], pieceLenField_); in Flush() 4735 ArrayRef<const uint8_t> out(&buf_[0], p_ - &buf_[0]); in Flush() 4755 p_ = &buf_[0]; in Reset() [all …]
|