Home | History | Annotate | Download | only in libnbaio

Lines Matching refs:EntryIterator

140     const uint8_t type = EntryIterator(ptr)->type;
158 NBLog::EntryIterator NBLog::FormatEntry::begin() const {
159 return EntryIterator(mEntry);
170 NBLog::EntryIterator NBLog::FormatEntry::args() const {
219 NBLog::EntryIterator NBLog::FormatEntry::copyWithAuthor(
245 void NBLog::EntryIterator::copyTo(std::unique_ptr<audio_utils_fifo_writer> &dst) const {
250 void NBLog::EntryIterator::copyData(uint8_t *dst) const {
254 NBLog::EntryIterator::EntryIterator()
257 NBLog::EntryIterator::EntryIterator(const uint8_t *entry)
260 NBLog::EntryIterator::EntryIterator(const NBLog::EntryIterator &other)
263 const NBLog::entry& NBLog::EntryIterator::operator*() const {
267 const NBLog::entry* NBLog::EntryIterator::operator->() const {
271 NBLog::EntryIterator& NBLog::EntryIterator::operator++() {
276 NBLog::EntryIterator& NBLog::EntryIterator::operator--() {
281 NBLog::EntryIterator NBLog::EntryIterator::next() const {
282 EntryIterator aux(*this);
286 NBLog::EntryIterator NBLog::EntryIterator::prev() const {
287 EntryIterator aux(*this);
291 int NBLog::EntryIterator::operator-(const NBLog::EntryIterator &other) const {
295 bool NBLog::EntryIterator::operator!=(const EntryIterator &other) const {
299 bool NBLog::EntryIterator::hasConsistentLength() const {
307 return EntryIterator(mEntry).payload<HistTsEntry>().ts;
311 return EntryIterator(mEntry).payload<HistTsEntry>().hash;
315 EntryIterator it(mEntry);
323 NBLog::EntryIterator NBLog::HistogramEntry::copyWithAuthor(
337 return EntryIterator(mEntry).next();
846 snapshot->mEnd = snapshot->mBegin = EntryIterator(front);
849 snapshot->mEnd = EntryIterator(lastEnd).next();
861 snapshot->mBegin = EntryIterator(firstStart);
884 size_t lost = snapshot.lost() + (snapshot.begin() - EntryIterator(snapshot.data()));
991 String8 NBLog::bufferDump(const EntryIterator &it)
996 NBLog::EntryIterator NBLog::Reader::handleFormat(const FormatEntry &fmtEntry,
1014 NBLog::EntryIterator arg = fmtEntry.args();
1125 std::vector<NBLog::EntryIterator> offsets(nLogs);