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

  /external/chromium_org/base/
pickle.cc 5 #include "base/pickle.h"
17 const int Pickle::kPayloadUnit = 64;
21 PickleIterator::PickleIterator(const Pickle& pickle)
22 : payload_(pickle.payload()),
24 end_index_(pickle.payload_size()) {
189 Pickle::Pickle()
198 Pickle::Pickle(int header_size
    [all...]
pickle.h 17 class Pickle;
19 // PickleIterator reads data from a Pickle. The Pickle object must remain valid
24 explicit PickleIterator(const Pickle& pickle);
26 // Methods for reading the payload of the Pickle. To read from the start of
27 // the Pickle, create a PickleIterator from a Pickle. If successful, these
64 // Read Type from Pickle.
85 const char* payload_; // Start of our pickle's payload
    [all...]
  /external/chromium_org/extensions/common/
user_script.cc 9 #include "base/pickle.h"
125 void UserScript::File::Pickle(::Pickle* pickle) const {
126 pickle->WriteString(url_.spec());
131 void UserScript::File::Unpickle(const ::Pickle& pickle, PickleIterator* iter) {
132 // Read the url from the pickle.
134 CHECK(pickle.ReadString(iter, &url));
138 void UserScript::Pickle(::Pickle* pickle) const
    [all...]

Completed in 100 milliseconds