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

  /external/libchrome/base/
pickle.cc 5 #include "base/pickle.h"
21 const int Pickle::kPayloadUnit = 64;
25 PickleIterator::PickleIterator(const Pickle& pickle)
26 : payload_(pickle.payload()),
28 end_index_(pickle.payload_size()) {
210 Pickle::Attachment::Attachment() = default;
212 Pickle::Attachment::~Attachment() = default;
216 Pickle::Pickle()
    [all...]
pickle.h 27 class Pickle;
29 // PickleIterator reads data from a Pickle. The Pickle object must remain valid
34 explicit PickleIterator(const Pickle& pickle);
36 // Methods for reading the payload of the Pickle. To read from the start of
37 // the Pickle, create a PickleIterator from a Pickle. If successful, these
83 // Read Type from Pickle.
104 const char* payload_; // Start of our pickle's payload
    [all...]
  /external/v8/tools/clang/plugins/tests/
ipc.cpp 42 class Pickle {};
60 static void Write(base::Pickle*, const T&) {}
64 void WriteParam(base::Pickle* pickle, const T& value) {
65 ParamTraits<T>::Write(pickle, value);
80 static void Write(base::Pickle* pickle, const Data& p) {
82 WriteParam(pickle, p.value); // OK
83 WriteParam(pickle, p.size); // ERROR
94 static void Write(base::Pickle* pickle, const Container<T>& container)
    [all...]

Completed in 65 milliseconds