Searched defs:Pickle (Results 1 - 3 of 3) sorted by relevance

/external/chromium/base/
H A Dpickle.cc15 const int Pickle::kPayloadUnit = 64;
22 Pickle::Pickle() function in class:Pickle
31 Pickle::Pickle(int header_size) function in class:Pickle
42 Pickle::Pickle(const char* data, int data_len) function in class:Pickle
61 Pickle::Pickle(const Pickle function in class:Pickle
[all...]
H A Dpickle.h19 // The Pickle class supports appending primitive values (ints, strings, etc.)
20 // to a pickle instance. The Pickle instance grows its internal memory buffer
22 // buffer is exposed as the "data" of the Pickle. This "data" can be passed
23 // to a Pickle object to initialize it for reading.
25 // When reading from a Pickle object, it is important for the consumer to know
26 // what value types to read and in what order to read them as the Pickle does
29 // The Pickle's data has a header which contains the size of the Pickle's
31 // space is controlled by the header_size parameter passed to the Pickle
34 class BASE_API Pickle { class
[all...]
/external/chromium/chrome/common/extensions/
H A Duser_script.cc93 void UserScript::File::Pickle(::Pickle* pickle) const { function in class:UserScript::File
99 void UserScript::File::Unpickle(const ::Pickle& pickle, void** iter) {
106 void UserScript::Pickle(::Pickle* pickle) const { function in class:UserScript
137 file->Pickle(pickle);
144 file->Pickle(pickle);
148 void UserScript::Unpickle(const ::Pickle& pickle, void** iter) {

Completed in 158 milliseconds