Searched defs:p_ (Results 1 - 2 of 2) sorted by relevance

/art/runtime/jdwp/
H A Djdwp.h472 size_t size() { return end_ - p_; }
475 const uint8_t* data() { return p_; }
477 void Skip(size_t count) { p_ += count; }
492 const uint8_t* p_; member in class:art::JDWP::Request
/art/runtime/
H A Ddebugger.cc4533 if (p_ > &buf_[0]) {
4552 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4553 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
4555 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4556 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
4559 pieceLenField_ = p_;
4560 JDWP::Write4BE(&p_, 0x55555555);
4572 CHECK_LE(pieceLenField_, p_);
4575 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
4594 p_
4740 uint8_t* p_; member in class:art::HeapChunkContext
[all...]

Completed in 303 milliseconds