HomeSort by relevance Sort by last modified time
    Searched defs:Pickle (Results 1 - 3 of 3) sorted by null

  /external/chromium/base/
pickle.h 19 // 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
    [all...]
pickle.cc 5 #include "base/pickle.h"
15 const int Pickle::kPayloadUnit = 64;
17 // We mark a read only pickle with a special capacity_.
22 Pickle::Pickle()
31 Pickle::Pickle(int header_size)
42 Pickle::Pickle(const char* data, int data_len)
61 Pickle::Pickle(const Pickle& other
    [all...]
  /external/chromium/chrome/common/extensions/
user_script.cc 7 #include "base/pickle.h"
93 void UserScript::File::Pickle(::Pickle* pickle) const {
94 pickle->WriteString(url_.spec());
99 void UserScript::File::Unpickle(const ::Pickle& pickle, void** iter) {
102 CHECK(pickle.ReadString(iter, &url));
106 void UserScript::Pickle(::Pickle* pickle) const
    [all...]

Completed in 37 milliseconds