Home | History | Annotate | Download | only in bpf_dsl

Lines Matching refs:Iterator

10 #include <iterator>
18 // iterator is aware of how system calls look like and will skip quickly
32 class Iterator;
37 Iterator begin() const;
38 Iterator end() const;
70 // Iterator provides C++ input iterator semantics for traversing a
72 class SyscallSet::Iterator
73 : public std::iterator<std::input_iterator_tag, uint32_t> {
75 Iterator(const Iterator& it)
77 ~Iterator() {}
80 Iterator& operator++();
83 Iterator(Set set, bool done);
92 friend bool operator==(const Iterator&, const Iterator&);
93 DISALLOW_ASSIGN(Iterator);
96 SANDBOX_EXPORT bool operator==(const SyscallSet::Iterator& lhs,
97 const SyscallSet::Iterator& rhs);
98 SANDBOX_EXPORT bool operator!=(const SyscallSet::Iterator& lhs,
99 const SyscallSet::Iterator& rhs);