Home
last modified time | relevance | path

Searched refs:buf_ (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dtrace.cc578 buf_(new uint8_t[std::max(kMinBufSize, buffer_size)]()), in Trace()
590 memset(buf_.get(), 0, kTraceHeaderLength); in Trace()
591 Append4LE(buf_.get(), kTraceMagicValue); in Trace()
592 Append2LE(buf_.get() + 4, trace_version); in Trace()
593 Append2LE(buf_.get() + 6, kTraceHeaderLength); in Trace()
594 Append8LE(buf_.get() + 8, start_time_); in Trace()
597 Append2LE(buf_.get() + 16, record_size); in Trace()
724 iov[1].iov_base = buf_.get(); in FinishTracing()
730 DumpBuf(buf_.get(), final_offset, clock_source_); in FinishTracing()
734 !trace_file_->WriteFully(buf_.get(), final_offset)) { in FinishTracing()
[all …]
Dtrace.h248 std::unique_ptr<uint8_t[]> buf_; variable
Ddebugger.cc2374 buf_(buf_in) { in GetThreadFrames()
2375 expandBufAdd4BE(buf_, frame_count_); in GetThreadFrames()
2390 expandBufAdd8BE(buf_, frame_id); in GetThreadFrames()
2391 expandBufAddLocation(buf_, location); in GetThreadFrames()
2401 JDWP::ExpandBuf* buf_; in GetThreadFrames() member in art::Dbg::GetThreadFrames::GetFrameVisitor
4500 : buf_(16384 - 16), in HeapChunkContext()
4512 if (p_ > &buf_[0]) { in ~HeapChunkContext()
4550 CHECK_LE(&buf_[0], pieceLenField_); in Flush()
4554 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]); in Flush()
4573 p_ = &buf_[0]; in Reset()
[all …]
/art/runtime/gc/collector/
Dconcurrent_copying.h58 buf_.reset(new Atomic<mirror::Object*>[size_]); in MarkQueue()
59 CHECK(buf_.get() != nullptr); in MarkQueue()
64 return &(buf_.get()[index & (size_ - 1)]); in GetSlotAddr()
124 memset(buf_.get(), 0, size_ * sizeof(Atomic<mirror::Object*>)); in Clear()
132 std::unique_ptr<Atomic<mirror::Object*>[]> buf_; variable