Lines Matching refs:p_
4070 if (p_ > &buf_[0]) { in ~HeapChunkContext()
4089 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap). in EnsureHeader()
4090 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes. in EnsureHeader()
4092 … JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start. in EnsureHeader()
4093 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address). in EnsureHeader()
4096 pieceLenField_ = p_; in EnsureHeader()
4097 JDWP::Write4BE(&p_, 0x55555555); in EnsureHeader()
4109 CHECK_LE(pieceLenField_, p_); in Flush()
4112 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]); in Flush()
4126 p_ = &buf_[0]; in Reset()
4192 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]); in AppendChunk()
4197 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]); in AppendChunk()
4208 *p_++ = state | HPSG_PARTIAL; in AppendChunk()
4209 *p_++ = 255; // length - 1 in AppendChunk()
4212 *p_++ = state; in AppendChunk()
4213 *p_++ = length - 1; in AppendChunk()
4265 uint8_t* p_; member in art::HeapChunkContext