Home | History | Annotate | Download | only in base

Lines Matching full:payload

26   // Methods for reading the payload of the Pickle. To read from the start of
99 // payload. It can optionally support additional space in the header. That
211 // Methods for adding to the payload of the Pickle. These values are
212 // appended to the end of the Pickle's payload. When reading values from a
260 // Payload follows after allocation of Header (header size is customizable).
262 uint32 payload_size; // Specifies the size of the payload.
279 // The payload is the pickle data immediately following the header.
282 const char* payload() const {
287 // header + payload.
290 return header_ ? payload() + payload_size() : NULL;
317 // The allocation granularity of the payload.
324 size_t header_size_; // Supports extra data between header and payload.
325 // Allocation size of payload (or -1 if allocation is const). Note: this