Home | History | Annotate | Download | only in base

Lines Matching full:payload

30 // payload.  It can optionally support additional space in the header.  That
64 // Methods for reading the payload of the Pickle. To read from the start of
86 // Methods for adding to the payload of the Pickle. These values are
87 // appended to the end of the Pickle's payload. When reading values from a
141 // Payload follows after allocation of Header (header size is customizable).
143 uint32 payload_size; // Specifies the size of the payload.
162 // payload, returns false.
174 char* payload() {
177 const char* payload() const {
182 // header + payload.
185 return payload() + payload_size();
189 return header_ ? payload() + payload_size() : NULL;
231 // The allocation granularity of the payload.
236 size_t header_size_; // Supports extra data between header and payload.
237 // Allocation size of payload (or -1 if allocation is const).