Home | History | Annotate | Download | only in jdwp

Lines Matching refs:p_

29 Request::Request(const uint8_t* bytes, uint32_t available) : p_(bytes) {
48 if (p_ < end_) {
49 CHECK(p_ == end_) << "read too few bytes: " << (end_ - p_);
50 } else if (p_ > end_) {
51 CHECK(p_ == end_) << "read too many bytes: " << (p_ - end_);
59 memcpy(&s[0], p_, length);
60 p_ += length;
160 return *p_++;
164 uint16_t result = p_[0] << 8 | p_[1];
165 p_ += 2;
170 uint32_t result = p_[0] << 24;
171 result |= p_[1] << 16;
172 result |= p_[2] << 8;
173 result |= p_[3];
174 p_ += 4;