Home
last modified time | relevance | path

Searched refs:grpc_auth_property_iterator_next (Results 1 – 25 of 36) sorted by relevance

12

/aosp_15_r20/external/grpc-grpc/test/core/security/
H A Dauth_context_test.cc40 ASSERT_EQ(grpc_auth_property_iterator_next(&it), nullptr); in TEST()
42 ASSERT_EQ(grpc_auth_property_iterator_next(&it), nullptr); in TEST()
44 ASSERT_EQ(grpc_auth_property_iterator_next(&it), nullptr); in TEST()
70 const grpc_auth_property* p = grpc_auth_property_iterator_next(&it); in TEST()
73 ASSERT_EQ(grpc_auth_property_iterator_next(&it), nullptr); in TEST()
76 ASSERT_EQ(grpc_auth_property_iterator_next(&it), &ctx->properties().array[2]); in TEST()
77 ASSERT_EQ(grpc_auth_property_iterator_next(&it), nullptr); in TEST()
80 ASSERT_EQ(grpc_auth_property_iterator_next(&it), &ctx->properties().array[0]); in TEST()
81 ASSERT_EQ(grpc_auth_property_iterator_next(&it), &ctx->properties().array[1]); in TEST()
82 ASSERT_EQ(grpc_auth_property_iterator_next(&it), nullptr); in TEST()
[all …]
H A Dsecurity_connector_test.cc83 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in check_property()
93 if (grpc_auth_property_iterator_next(&it) != nullptr) { in check_property()
107 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in check_properties()
124 if (grpc_auth_property_iterator_next(&it) != nullptr) { in check_properties()
137 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in check_spiffe_id()
154 if (grpc_auth_property_iterator_next(&it) != nullptr) { in check_spiffe_id()
H A Dinsecure_security_connector_test.cc42 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in TEST()
49 prop = grpc_auth_property_iterator_next(&it); in TEST()
H A Dalts_security_connector_test.cc144 prop = grpc_auth_property_iterator_next(&it); in test_identity()
/aosp_15_r20/external/grpc-grpc/src/core/lib/security/credentials/tls/
H A Dtls_utils.cc101 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in GetAuthPropertyValue()
106 if (grpc_auth_property_iterator_next(&it) != nullptr) { in GetAuthPropertyValue()
118 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in GetAuthPropertyArray()
121 prop = grpc_auth_property_iterator_next(&it); in GetAuthPropertyArray()
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/security/credentials/tls/
Dtls_utils.cc99 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in GetAuthPropertyValue()
104 if (grpc_auth_property_iterator_next(&it) != nullptr) { in GetAuthPropertyValue()
116 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in GetAuthPropertyArray()
119 prop = grpc_auth_property_iterator_next(&it); in GetAuthPropertyArray()
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/cpp/common/
Dsecure_auth_context.cc35 while ((property = grpc_auth_property_iterator_next(&iter))) { in GetPeerIdentity()
59 while ((property = grpc_auth_property_iterator_next(&iter))) { in FindPropertyValues()
70 grpc_auth_property_iterator_next(&iter); in begin()
Dauth_property_iterator.cc41 property_ = grpc_auth_property_iterator_next(&iter); in operator ++()
/aosp_15_r20/external/grpc-grpc/src/cpp/common/
H A Dsecure_auth_context.cc35 while ((property = grpc_auth_property_iterator_next(&iter))) { in GetPeerIdentity()
59 while ((property = grpc_auth_property_iterator_next(&iter))) { in FindPropertyValues()
70 grpc_auth_property_iterator_next(&iter); in begin()
H A Dauth_property_iterator.cc41 property_ = grpc_auth_property_iterator_next(&iter); in operator ++()
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/security/context/
Dsecurity_context.cc154 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in grpc_auth_context_set_peer_identity_property_name()
181 const grpc_auth_property* grpc_auth_property_iterator_next( in grpc_auth_property_iterator_next() function
202 return grpc_auth_property_iterator_next(it); in grpc_auth_property_iterator_next()
/aosp_15_r20/external/grpc-grpc/src/core/lib/security/context/
H A Dsecurity_context.cc154 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in grpc_auth_context_set_peer_identity_property_name()
181 const grpc_auth_property* grpc_auth_property_iterator_next( in grpc_auth_property_iterator_next() function
202 return grpc_auth_property_iterator_next(it); in grpc_auth_property_iterator_next()
/aosp_15_r20/external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/
H A Dsecurity.pyx.pxi47 property = grpc_auth_property_iterator_next(&properties)
80 property = grpc_auth_property_iterator_next(&properties)
/aosp_15_r20/external/grpc-grpc/test/core/end2end/tests/
H A Dcall_creds.cc53 while ((p = grpc_auth_property_iterator_next(&it)) != nullptr) { in PrintAuthContext()
58 while ((p = grpc_auth_property_iterator_next(&it)) != nullptr) { in PrintAuthContext()
/aosp_15_r20/external/grpc-grpc/test/cpp/common/
H A Dauth_property_iterator_test.cc64 grpc_auth_property_iterator_next(&c_iter); in TEST_F()
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/security/transport/
Dsecurity_handshaker.cc242 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in MakeChannelzSecurityFromAuthContext()
367 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in CheckPeerLocked()
Dclient_auth_filter.cc144 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in GetCallCredsMetadata()
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/security/security_connector/
Dssl_utils.cc354 while (grpc_auth_property_iterator_next(&it) != nullptr) max_num_props++; in grpc_shallow_peer_from_ssl_auth_context()
360 while ((prop = grpc_auth_property_iterator_next(&it)) != nullptr) { in grpc_shallow_peer_from_ssl_auth_context()
/aosp_15_r20/external/grpc-grpc/src/core/lib/security/transport/
H A Dsecurity_handshaker.cc241 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in MakeChannelzSecurityFromAuthContext()
366 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in CheckPeerLocked()
H A Dclient_auth_filter.cc143 const grpc_auth_property* prop = grpc_auth_property_iterator_next(&it); in GetCallCredsMetadata()
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio/src/security/
Dauth_context.rs104 let prop = unsafe { grpc_sys::grpc_auth_property_iterator_next(&mut self.iter) }; in next()
/aosp_15_r20/external/grpc-grpc/src/core/lib/security/security_connector/
H A Dssl_utils.cc358 while (grpc_auth_property_iterator_next(&it) != nullptr) max_num_props++; in grpc_shallow_peer_from_ssl_auth_context()
364 while ((prop = grpc_auth_property_iterator_next(&it)) != nullptr) { in grpc_shallow_peer_from_ssl_auth_context()
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/
Dgrpc.def103 grpc_auth_property_iterator_next
/aosp_15_r20/external/grpc-grpc/
H A Dgrpc.def102 grpc_auth_property_iterator_next
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/ext/filters/load_reporting/
Dserver_load_reporting_filter.cc88 grpc_auth_property_iterator_next(&auth_it); in Create()

12