Lines Matching refs:EntryIterator
48 EntryIterator::EntryIterator() // Dummy initialization. in EntryIterator() function in android::NBLog::EntryIterator
53 EntryIterator::EntryIterator(const uint8_t *entry) in EntryIterator() function in android::NBLog::EntryIterator
58 EntryIterator::EntryIterator(const EntryIterator &other) in EntryIterator() function in android::NBLog::EntryIterator
63 const entry& EntryIterator::operator*() const in operator *()
68 const entry* EntryIterator::operator->() const in operator ->()
73 EntryIterator& EntryIterator::operator++() in operator ++()
79 EntryIterator& EntryIterator::operator--() in operator --()
85 EntryIterator EntryIterator::next() const in next()
87 EntryIterator aux(*this); in next()
91 EntryIterator EntryIterator::prev() const in prev()
93 EntryIterator aux(*this); in prev()
97 bool EntryIterator::operator!=(const EntryIterator &other) const in operator !=()
102 int EntryIterator::operator-(const EntryIterator &other) const in operator -()
107 bool EntryIterator::hasConsistentLength() const in hasConsistentLength()
113 void EntryIterator::copyTo(std::unique_ptr<audio_utils_fifo_writer> &dst) const in copyTo()
119 void EntryIterator::copyData(uint8_t *dst) const in copyData()
131 const uint8_t type = EntryIterator(ptr)->type; in buildEntry()
144 EntryIterator FormatEntry::begin() const in begin()
146 return EntryIterator(mEntry); in begin()
159 EntryIterator FormatEntry::args() const in args()
200 EntryIterator FormatEntry::copyWithAuthor( in copyWithAuthor()
227 return EntryIterator(mEntry).payload<HistTsEntry>().ts; in timestamp()
232 return EntryIterator(mEntry).payload<HistTsEntry>().hash; in hash()
237 EntryIterator it(mEntry); in author()
242 EntryIterator HistogramEntry::copyWithAuthor( in copyWithAuthor()
258 return EntryIterator(mEntry).next(); in copyWithAuthor()