Home
last modified time | relevance | path

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

/art/runtime/hprof/
Dhprof.cc73 unsigned char* buf_ = (unsigned char*)(buf); \
76 buf_[offset_ + 0] = (unsigned char)(value_ >> 8); \
77 buf_[offset_ + 1] = (unsigned char)(value_ ); \
82 unsigned char* buf_ = (unsigned char*)(buf); \
85 buf_[offset_ + 0] = (unsigned char)(value_ >> 24); \
86 buf_[offset_ + 1] = (unsigned char)(value_ >> 16); \
87 buf_[offset_ + 2] = (unsigned char)(value_ >> 8); \
88 buf_[offset_ + 3] = (unsigned char)(value_ ); \
93 unsigned char* buf_ = (unsigned char*)(buf); \
96 buf_[offset_ + 0] = (unsigned char)(value_ >> 56); \
[all …]
/art/runtime/
Dtrace.cc447 : trace_file_(trace_file), buf_(new uint8_t[buffer_size]()), flags_(flags), in Trace()
452 memset(buf_.get(), 0, kTraceHeaderLength); in Trace()
453 Append4LE(buf_.get(), kTraceMagicValue); in Trace()
454 Append2LE(buf_.get() + 4, trace_version); in Trace()
455 Append2LE(buf_.get() + 6, kTraceHeaderLength); in Trace()
456 Append8LE(buf_.get() + 8, start_time_); in Trace()
459 Append2LE(buf_.get() + 16, record_size); in Trace()
529 iov[1].iov_base = buf_.get(); in FinishTracing()
535 DumpBuf(buf_.get(), final_offset, clock_source_); in FinishTracing()
539 !trace_file_->WriteFully(buf_.get(), final_offset)) { in FinishTracing()
[all …]
Ddebugger.cc1867 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) { in GetThreadFrames()
1868 expandBufAdd4BE(buf_, frame_count_); in GetThreadFrames()
1885 expandBufAdd8BE(buf_, frame_id); in GetThreadFrames()
1886 expandBufAddLocation(buf_, location); in GetThreadFrames()
1896 JDWP::ExpandBuf* buf_; in GetThreadFrames() member in art::Dbg::GetThreadFrames::GetFrameVisitor
2022 buf_(buf), width_(width) {} in GetLocalValue()
2040 JDWP::Set1(buf_+1, intVal != 0); in GetLocalValue()
2048 JDWP::Set1(buf_+1, intVal); in GetLocalValue()
2057 JDWP::Set2BE(buf_+1, intVal); in GetLocalValue()
2065 JDWP::Set4BE(buf_+1, intVal); in GetLocalValue()
[all …]
Dtrace.h133 UniquePtr<uint8_t> buf_; variable