Searched defs:PickleIterator (Results 1 - 2 of 2) sorted by path

/external/chromium_org/base/
H A Dpickle.cc21 PickleIterator::PickleIterator(const Pickle& pickle) function in class:PickleIterator
28 inline bool PickleIterator::ReadBuiltinType(Type* result) {
39 inline void PickleIterator::Advance(size_t size) {
49 inline const char* PickleIterator::GetReadPointerAndAdvance() {
59 const char* PickleIterator::GetReadPointerAndAdvance(int num_bytes) {
70 inline const char* PickleIterator::GetReadPointerAndAdvance(
81 bool PickleIterator::ReadBool(bool* result) {
85 bool PickleIterator::ReadInt(int* result) {
89 bool PickleIterator
[all...]
H A Dpickle.h19 // PickleIterator reads data from a Pickle. The Pickle object must remain valid
20 // while the PickleIterator object is in use.
21 class BASE_EXPORT PickleIterator { class
23 PickleIterator() : payload_(NULL), read_index_(0), end_index_(0) {} function in class:PickleIterator
24 explicit PickleIterator(const Pickle& pickle);
27 // the Pickle, create a PickleIterator from a Pickle. If successful, these
145 // PickleIterator methods.
147 bool ReadBool(PickleIterator* iter,
151 bool ReadInt(PickleIterator* iter,
155 bool ReadLong(PickleIterator* ite
[all...]

Completed in 172 milliseconds