Home
last modified time | relevance | path

Searched refs:AuthPropertyIterator (Results 1 – 6 of 6) sorted by relevance

/external/grpc-grpc/src/cpp/common/
Dauth_property_iterator.cc25 AuthPropertyIterator::AuthPropertyIterator() in AuthPropertyIterator() function in grpc::AuthPropertyIterator
28 AuthPropertyIterator::AuthPropertyIterator( in AuthPropertyIterator() function in grpc::AuthPropertyIterator
35 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 *()
Dsecure_auth_context.cc70 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()
Dsecure_auth_context.h43 AuthPropertyIterator begin() const override;
45 AuthPropertyIterator end() const override;
/external/grpc-grpc/include/grpcpp/impl/codegen/security/
Dauth_context.h37 class AuthPropertyIterator
40 ~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;
/external/grpc-grpc/test/cpp/common/
Dauth_property_iterator_test.cc32 class TestAuthPropertyIterator : public AuthPropertyIterator {
37 : AuthPropertyIterator(property, iter) {} in TestAuthPropertyIterator()
Dsecure_auth_context_test.cc70 AuthPropertyIterator iter = context.begin(); in TEST_F()