Lines Matching full:payload
8 // one payload item at a time.
46 // The payload of the list. This maintains a copy of the key so we can
84 // Inserts a payload item with the given key. If an existing item has
88 // The payload will be copied. In the case of an OwningMRUCache, this function
90 iterator Put(const KeyType& key, const PayloadType& payload) {
91 // Remove any existing payload with that key.
103 ordering_.push_front(value_type(key, payload));
124 // Retrieves the payload associated with a given key and returns it via
216 void operator()(PayloadType& payload) {
247 void operator()(PayloadType& payload) {
248 delete payload;
252 // A cache that owns the payload type, which must be a non-const pointer type.