Lines Matching refs:write_offset_
168 write_offset_(0) { in Pickle()
177 write_offset_(0) { in Pickle()
188 write_offset_(0) { in Pickle()
207 write_offset_(other.write_offset_) { in Pickle()
235 write_offset_ = other.write_offset_; in operator =()
277 DCHECK_LE(write_offset_, kuint32max - data_len); in Reserve()
278 size_t new_size = write_offset_ + data_len; in Reserve()
326 DCHECK_LE(write_offset_, kuint32max - data_len); in WriteBytesCommon()
327 size_t new_size = write_offset_ + data_len; in WriteBytesCommon()
332 char* write = mutable_payload() + write_offset_; in WriteBytesCommon()
335 header_->payload_size = static_cast<uint32>(write_offset_ + length); in WriteBytesCommon()
336 write_offset_ = new_size; in WriteBytesCommon()