Home | History | Annotate | Download | only in disk_cache

Lines Matching full:data

16 // This class encapsulates common behavior of a single "block" of data that is
19 // This object provides a memory buffer for the related data, and it can be used
26 // DoSomething(a.Data());
27 // b.SetData(a.Data());
28 // ModifySomething(b.Data());
29 // // Data modified on the previous call will be saved by b's destructor.
48 // Deletes the data, even if it was modified and not saved. This object must
52 // Stops sharing the data with another object.
55 // Sets the object to lazily save the in-memory data on destruction.
59 T* Data();
61 // Returns true if there is data associated with this object.
64 // Returns true if this object owns the data buffer, false if it is shared.
69 // Loads and store the data.