Home | History | Annotate | Download | only in jdwp

Lines Matching refs:p_

26 Request::Request(const uint8_t* bytes, uint32_t available) : p_(bytes) {
45 if (p_ < end_) {
46 CHECK(p_ == end_) << "read too few bytes: " << (end_ - p_);
47 } else if (p_ > end_) {
48 CHECK(p_ == end_) << "read too many bytes: " << (p_ - end_);
56 memcpy(&s[0], p_, length);
57 p_ += length;
157 return *p_++;
161 uint16_t result = p_[0] << 8 | p_[1];
162 p_ += 2;
167 uint32_t result = p_[0] << 24;
168 result |= p_[1] << 16;
169 result |= p_[2] << 8;
170 result |= p_[3];
171 p_ += 4;