Home
last modified time | relevance | path

Searched refs:DelegationType (Results 1 – 18 of 18) sorted by relevance

/external/cronet/net/http/
Dhttp_auth_preferences_unittest.cc76 TEST(HttpAuthPreferencesTest, DelegationType) { in TEST() argument
77 using DelegationType = HttpAuth::DelegationType; in TEST() typedef
80 EXPECT_EQ(DelegationType::kNone, http_auth_preferences.GetDelegationType( in TEST()
84 EXPECT_EQ(DelegationType::kUnconstrained, in TEST()
89 EXPECT_EQ(DelegationType::kByKdcPolicy, in TEST()
94 EXPECT_EQ(DelegationType::kNone, http_auth_preferences.GetDelegationType( in TEST()
Dhttp_auth_preferences.cc54 using DelegationType = HttpAuth::DelegationType; typedef
56 DelegationType HttpAuthPreferences::GetDelegationType( in GetDelegationType()
59 return DelegationType::kNone; in GetDelegationType()
62 return DelegationType::kByKdcPolicy; in GetDelegationType()
64 return DelegationType::kUnconstrained; in GetDelegationType()
Dmock_allow_http_auth_preferences.cc19 HttpAuth::DelegationType MockAllowHttpAuthPreferences::GetDelegationType( in GetDelegationType()
21 return HttpAuth::DelegationType::kUnconstrained; in GetDelegationType()
Dhttp_auth_handler_negotiate.cc36 using DelegationType = HttpAuth::DelegationType; typedef
408 DelegationType HttpAuthHandlerNegotiate::GetDelegationType() const { in GetDelegationType()
410 return DelegationType::kNone; in GetDelegationType()
414 return DelegationType::kNone; in GetDelegationType()
Dhttp_auth_gssapi_posix.cc36 using DelegationType = HttpAuth::DelegationType; typedef
49 OM_uint32 DelegationTypeToFlag(DelegationType delegation_type) { in DelegationTypeToFlag()
51 case DelegationType::kNone: in DelegationTypeToFlag()
53 case DelegationType::kByKdcPolicy: in DelegationTypeToFlag()
55 case DelegationType::kUnconstrained: in DelegationTypeToFlag()
680 void HttpAuthGSSAPI::SetDelegation(DelegationType delegation_type) { in SetDelegation()
Dhttp_auth_sspi_win.cc26 using DelegationType = HttpAuth::DelegationType; typedef
359 delegation_type_(DelegationType::kNone) { in HttpAuthSSPI()
387 void HttpAuthSSPI::SetDelegation(DelegationType delegation_type) { in SetDelegation()
546 if (delegation_type_ != DelegationType::kNone) in GetNextSecurityToken()
Dhttp_auth_gssapi_posix.h241 void SetDelegation(HttpAuth::DelegationType delegation_type) override;
254 HttpAuth::DelegationType delegation_type_ = HttpAuth::DelegationType::kNone;
Dhttp_auth_sspi_win.h163 void SetDelegation(HttpAuth::DelegationType delegation_type) override;
184 HttpAuth::DelegationType delegation_type_;
Dmock_allow_http_auth_preferences.h30 HttpAuth::DelegationType GetDelegationType(
Dhttp_auth_mechanism.h72 virtual void SetDelegation(HttpAuth::DelegationType delegation_type) = 0;
Dhttp_auth_ntlm_mechanism.h68 void SetDelegation(HttpAuth::DelegationType delegation_type) override;
Dhttp_auth.h113 enum class DelegationType { enum
Dhttp_auth_preferences.h58 virtual HttpAuth::DelegationType GetDelegationType(
Dhttp_auth_handler_negotiate.h134 HttpAuth::DelegationType GetDelegationType() const;
Dhttp_auth_ntlm_mechanism.cc164 HttpAuth::DelegationType delegation_type) { in SetDelegation()
Dhttp_auth_handler_negotiate_unittest.cc521 void SetDelegation(HttpAuth::DelegationType delegation_type) override {} in SetDelegation()
/external/cronet/net/android/
Dhttp_auth_negotiate_android.cc150 HttpAuth::DelegationType delegation_type) { in SetDelegation()
151 DCHECK_NE(delegation_type, HttpAuth::DelegationType::kByKdcPolicy); in SetDelegation()
152 can_delegate_ = delegation_type == HttpAuth::DelegationType::kUnconstrained; in SetDelegation()
Dhttp_auth_negotiate_android.h88 void SetDelegation(HttpAuth::DelegationType delegation_type) override;