Lines Matching refs:p_
4178 if (p_ > &buf_[0]) { in ~HeapChunkContext()
4197 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap). in EnsureHeader()
4198 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes. in EnsureHeader()
4200 … JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start. in EnsureHeader()
4201 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address). in EnsureHeader()
4204 pieceLenField_ = p_; in EnsureHeader()
4205 JDWP::Write4BE(&p_, 0x55555555); in EnsureHeader()
4217 CHECK_LE(pieceLenField_, p_); in Flush()
4220 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]); in Flush()
4234 p_ = &buf_[0]; in Reset()
4300 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]); in AppendChunk()
4305 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]); in AppendChunk()
4316 *p_++ = state | HPSG_PARTIAL; in AppendChunk()
4317 *p_++ = 255; // length - 1 in AppendChunk()
4320 *p_++ = state; in AppendChunk()
4321 *p_++ = length - 1; in AppendChunk()
4378 uint8_t* p_; member in art::HeapChunkContext