Searched refs:AuthPropertyIterator (Results 1 – 6 of 6) sorted by relevance
25 AuthPropertyIterator::AuthPropertyIterator() in AuthPropertyIterator() function in grpc::AuthPropertyIterator28 AuthPropertyIterator::AuthPropertyIterator( in AuthPropertyIterator() function in grpc::AuthPropertyIterator35 AuthPropertyIterator::~AuthPropertyIterator() {} in ~AuthPropertyIterator()37 AuthPropertyIterator& AuthPropertyIterator::operator++() { in operator ++()46 AuthPropertyIterator AuthPropertyIterator::operator++(int) { in operator ++()47 AuthPropertyIterator tmp(*this); in operator ++()52 bool AuthPropertyIterator::operator==(const AuthPropertyIterator& rhs) const { in operator ==()60 bool AuthPropertyIterator::operator!=(const AuthPropertyIterator& rhs) const { in operator !=()64 const AuthProperty AuthPropertyIterator::operator*() { in operator *()
70 AuthPropertyIterator SecureAuthContext::begin() const { in begin()76 return AuthPropertyIterator(property, &iter); in begin()82 AuthPropertyIterator SecureAuthContext::end() const { in end()83 return AuthPropertyIterator(); in end()
43 AuthPropertyIterator begin() const override;45 AuthPropertyIterator end() const override;
37 class AuthPropertyIterator40 ~AuthPropertyIterator();41 AuthPropertyIterator& operator++();42 AuthPropertyIterator operator++(int);43 bool operator==(const AuthPropertyIterator& rhs) const;44 bool operator!=(const AuthPropertyIterator& rhs) const;48 AuthPropertyIterator();49 AuthPropertyIterator(const grpc_auth_property* property,84 virtual AuthPropertyIterator begin() const = 0;85 virtual AuthPropertyIterator end() const = 0;
32 class TestAuthPropertyIterator : public AuthPropertyIterator {37 : AuthPropertyIterator(property, iter) {} in TestAuthPropertyIterator()
70 AuthPropertyIterator iter = context.begin(); in TEST_F()