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

  /external/libchrome/base/
pickle.cc 5 #include "base/pickle.h"
19 const int Pickle::kPayloadUnit = 64;
23 PickleIterator::PickleIterator(const Pickle& pickle)
24 : payload_(pickle.payload()),
26 end_index_(pickle.payload_size()) {
213 Pickle::Pickle()
218 static_assert((Pickle::kPayloadUnit & (Pickle::kPayloadUnit - 1)) == 0
    [all...]
pickle.h 22 class Pickle;
24 // PickleIterator reads data from a Pickle. The Pickle object must remain valid
29 explicit PickleIterator(const Pickle& pickle);
31 // Methods for reading the payload of the Pickle. To read from the start of
32 // the Pickle, create a PickleIterator from a Pickle. If successful, these
79 // Read Type from Pickle.
100 const char* payload_; // Start of our pickle's payload
    [all...]

Completed in 53 milliseconds