/external/chromium/chrome/browser/chromeos/login/ |
D | authenticator_unittest.cc | 13 EXPECT_EQ(lower_case, Authenticator::Canonicalize(lower_case)); in TEST() 17 EXPECT_EQ(Authenticator::Canonicalize("user@what.com"), in TEST() 18 Authenticator::Canonicalize("UsEr@what.com")); in TEST() 22 EXPECT_EQ(Authenticator::Canonicalize("user@what.com"), in TEST() 23 Authenticator::Canonicalize("UsEr@what.COM")); in TEST() 27 EXPECT_NE(Authenticator::Canonicalize("u.ser@what.com"), in TEST() 28 Authenticator::Canonicalize("UsEr@what.com")); in TEST() 32 EXPECT_EQ(Authenticator::Canonicalize("u.ser@what.com"), in TEST() 33 Authenticator::Canonicalize("U.sEr@what.com")); in TEST() 37 EXPECT_EQ(Authenticator::Canonicalize("us.er@gmail.com"), in TEST() [all …]
|
D | authenticator.cc | 18 const char Authenticator::kSpecialCaseDomain[] = "gmail.com"; 20 Authenticator::Authenticator(LoginStatusConsumer* consumer) in Authenticator() function in chromeos::Authenticator 24 Authenticator::~Authenticator() {} in ~Authenticator() 27 std::string Authenticator::Canonicalize(const std::string& email_address) { in Canonicalize()
|
D | authenticator.h | 24 class Authenticator : public base::RefCountedThreadSafe<Authenticator> { 29 explicit Authenticator(LoginStatusConsumer* consumer); 30 virtual ~Authenticator(); 100 DISALLOW_COPY_AND_ASSIGN(Authenticator);
|
D | screen_locker.h | 31 class Authenticator; variable 145 void SetAuthenticator(Authenticator* authenticator); 203 scoped_refptr<Authenticator> authenticator_;
|
D | login_performer.cc | 288 &Authenticator::LoginOffTheRecord)); in LoginOffTheRecord() 295 &Authenticator::RecoverEncryptedData, in RecoverEncryptedData() 305 &Authenticator::ResyncEncryptedData, in ResyncEncryptedData() 472 &Authenticator::AuthenticateToLogin, in StartAuthentication() 486 &Authenticator::RetryAuth, in StartAuthentication()
|
D | login_utils.h | 24 class Authenticator; variable 69 virtual Authenticator* CreateAuthenticator(LoginStatusConsumer* consumer) = 0;
|
D | mock_authenticator.h | 24 class MockAuthenticator : public Authenticator { 29 : Authenticator(consumer), in MockAuthenticator() 131 virtual Authenticator* CreateAuthenticator(LoginStatusConsumer* consumer) { in CreateAuthenticator()
|
D | parallel_authenticator.cc | 56 : Authenticator(consumer), in ParallelAuthenticator() 73 std::string canonicalized = Authenticator::Canonicalize(username); in AuthenticateToLogin() 101 new AuthAttemptState(Authenticator::Canonicalize(username), in AuthenticateToUnlock() 252 new AuthAttemptState(Authenticator::Canonicalize(username), in RetryAuth()
|
D | login_performer.h | 153 scoped_refptr<Authenticator> authenticator_;
|
D | parallel_authenticator.h | 55 class ParallelAuthenticator : public Authenticator,
|
D | user_image_downloader.cc | 161 if (Authenticator::Canonicalize(email) == username_) in IsUserEntry()
|
D | login_utils.cc | 130 virtual Authenticator* CreateAuthenticator(LoginStatusConsumer* consumer); 517 Authenticator* LoginUtilsImpl::CreateAuthenticator( in CreateAuthenticator()
|
D | google_authenticator.h | 37 class GoogleAuthenticator : public Authenticator, public GaiaAuthConsumer {
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
D | AuthenticatorTest.java | 22 import java.net.Authenticator; 30 import java.net.Authenticator.RequestorType; 41 assertEquals(RequestorType.PROXY, Authenticator.RequestorType in test_RequestorType_valueOfLjava_lang_String() 43 assertEquals(RequestorType.SERVER, Authenticator.RequestorType in test_RequestorType_valueOfLjava_lang_String() 46 RequestorType rt = Authenticator.RequestorType.valueOf("BADNAME"); in test_RequestorType_valueOfLjava_lang_String() 54 Authenticator.RequestorType.valueOf(null); in test_RequestorType_valueOfLjava_lang_String() 79 Authenticator.setDefault(mock); in test_requestPasswordAuthentication_InetAddress_int_String_String_String() 80 Authenticator.requestPasswordAuthentication(addr, -1, "http", "promt", "HTTP"); in test_requestPasswordAuthentication_InetAddress_int_String_String_String() 91 Authenticator.setDefault(mock); in test_requestPasswordAuthentication_String_InetAddress_int_String_String_String() 92 Authenticator.requestPasswordAuthentication("test_host", addr, -1, "http", "promt", "HTTP"); in test_requestPasswordAuthentication_String_InetAddress_int_String_String_String() [all …]
|
/external/wpa_supplicant_8/hostapd/ |
D | README | 2 Authenticator and RADIUS authentication server 57 server for MAC address based access control, IEEE 802.1X Authenticator 59 Authenticator and dynamic TKIP/CCMP keying. 115 IEEE 802.1X uses elements called Supplicant, Authenticator, Port 118 Server. An access point includes an Authenticator that relays the packets 120 Port Access Entity (PAE) with Authenticator functionality for 125 between a Supplicant and an Authenticator are sent using EAP over LAN 126 (EAPOL) and the Authenticator relays these frames to the Authentication 129 Authenticator, in which case there is no need for additional protocol 138 frames to be passed between the Supplicant and the Authenticator even [all …]
|
/external/chromium/chrome/browser/ui/webui/options/chromeos/ |
D | accounts_options_handler.cc | 85 users_settings()->WhitelistUser(Authenticator::Canonicalize(email)); in WhitelistUser() 94 users_settings()->UnwhitelistUser(Authenticator::Canonicalize(email)); in UnwhitelistUser()
|
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/ |
D | wpa_background.sgml | 56 master session key for the Authenticator (AP) and Supplicant 61 keys between the Authenticator and Supplicant. This handshake is 62 also used to verify that both Authenticator and Supplicant know
|
D | wpa_supplicant.sgml | 55 Authenticator and EAP authentication with Authentication 101 authentication server (proxied by the Authenticator in the 117 Handshake and Group Key Handshake with the Authenticator
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/http/ |
D | HttpURLConnectionTest.java | 21 import java.net.Authenticator;
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/ |
D | HttpsURLConnectionTest.java | 27 import java.net.Authenticator; 579 Authenticator.setDefault(new Authenticator() { in testProxyAuthConnection() 668 Authenticator.setDefault(new Authenticator() { in testProxyAuthConnection_doOutput()
|
/external/okhttp/src/main/java/libcore/net/http/ |
D | HttpURLConnectionImpl.java | 25 import java.net.Authenticator; 437 PasswordAuthentication auth = Authenticator.requestPasswordAuthentication( in getAuthorizationCredentials()
|
/external/okhttp/src/test/java/libcore/net/http/ |
D | URLConnectionTest.java | 29 import java.net.Authenticator; 80 private static final Authenticator SIMPLE_AUTHENTICATOR = new Authenticator() { 112 Authenticator.setDefault(null); in tearDown() 672 Authenticator.setDefault(SIMPLE_AUTHENTICATOR); in testProxyAuthenticateOnConnect() 960 Authenticator.setDefault(SIMPLE_AUTHENTICATOR); in testAuthenticateWithStreamingPost() 1141 Authenticator.setDefault(SIMPLE_AUTHENTICATOR); in testAuthenticateWithPost() 1176 Authenticator.setDefault(SIMPLE_AUTHENTICATOR); in testAuthenticateWithGet()
|
/external/wpa_supplicant_6/wpa_supplicant/ |
D | eap_testing.txt | 5 - Linked some parts of IEEE 802.1X Authenticator implementation from 13 integrated) Authenticator. 127 6) Authenticator simulator required patching for handling Access-Accept within
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | eap_testing.txt | 5 - Linked some parts of IEEE 802.1X Authenticator implementation from 13 integrated) Authenticator. 127 6) Authenticator simulator required patching for handling Access-Accept within
|
D | README | 231 the Authenticator (AP) and Supplicant (client station). 235 the Authenticator and Supplicant. This handshake is also used to 236 verify that both Authenticator and Supplicant know the master session 261 negotiation with a WPA Authenticator and EAP authentication with 278 Authenticator in the AP) 282 with the Authenticator (AP)
|