Lines Matching refs:p_
422 : p_(p), in Buffer()
431 *v = *p_; in U8()
432 p_++; in U8()
440 *v = static_cast<uint16>(p_[0]) << 8 | in U16()
441 static_cast<uint16>(p_[1]); in U16()
442 p_ += 2; in U16()
450 *v = static_cast<uint32>(p_[0]) << 24 | in U32()
451 static_cast<uint32>(p_[1]) << 16 | in U32()
452 static_cast<uint32>(p_[2]) << 8 | in U32()
453 static_cast<uint32>(p_[3]); in U32()
454 p_ += 4; in U32()
462 p_ += n; in Skip()
470 *out = base::StringPiece(reinterpret_cast<const char*>(p_), len); in Block()
471 p_ += len; in Block()
480 const uint8* p = p_; in DNSName()
508 p_ = p; in DNSName()
530 p_ = p; in DNSName()
545 const uint8* p_; member in net::Buffer