Searched defs:authenticator (Results 1 - 25 of 33) sorted by relevance

12

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpAuthenticator.java40 /** Uses the global authenticator to get the password. */
96 OkAuthenticator authenticator, Response response, Proxy proxy) throws IOException {
113 ? authenticator.authenticateProxy(proxy, request.url(), challenges)
114 : authenticator.authenticate(proxy, request.url(), challenges);
95 processAuthHeader( OkAuthenticator authenticator, Response response, Proxy proxy) argument
/external/chromium_org/remoting/protocol/
H A Dsecure_channel_factory.cc9 #include "remoting/protocol/authenticator.h"
17 Authenticator* authenticator)
19 authenticator_(authenticator) {
15 SecureChannelFactory( StreamChannelFactory* channel_factory, Authenticator* authenticator) argument
H A Djingle_session_manager.cc8 #include "remoting/protocol/authenticator.h"
49 scoped_ptr<Authenticator> authenticator,
55 session->StartConnection(host_jid, authenticator.Pass(), config.Pass());
109 scoped_ptr<Authenticator> authenticator = local
115 session->InitializeIncomingConnection(message, authenticator.Pass());
47 Connect( const std::string& host_jid, scoped_ptr<Authenticator> authenticator, scoped_ptr<CandidateSessionConfig> config) argument
H A Dprotocol_mock_objects.h17 #include "remoting/protocol/authenticator.h"
196 Authenticator* authenticator,
203 scoped_ptr<Authenticator> authenticator,
206 host_jid, authenticator.get(), config.get()));
201 Connect( const std::string& host_jid, scoped_ptr<Authenticator> authenticator, scoped_ptr<CandidateSessionConfig> config) argument
H A Dpairing_authenticator_base.cc61 // The client authenticator creates the underlying authenticator in the ctor
79 // Pass the message to the underlying authenticator for processing, but
148 scoped_ptr<Authenticator> authenticator) {
150 DCHECK(authenticator);
152 v2_authenticator_ = authenticator.Pass();
145 SetAuthenticatorAndProcessMessage( const buzz::XmlElement* message, const base::Closure& resume_callback, scoped_ptr<Authenticator> authenticator) argument
H A Dconnection_to_host.cc14 #include "remoting/protocol/authenticator.h"
53 scoped_ptr<Authenticator> authenticator,
72 authenticator_ = authenticator.Pass();
51 Connect(SignalStrategy* signal_strategy, scoped_ptr<TransportFactory> transport_factory, scoped_ptr<Authenticator> authenticator, const std::string& host_jid, HostEventCallback* event_callback) argument
H A Dfake_authenticator.cc190 FakeAuthenticator* authenticator = new FakeAuthenticator( local
192 authenticator->set_messages_till_started(messages_till_started_);
194 scoped_ptr<Authenticator> result(authenticator);
H A Djingle_session.cc15 #include "remoting/protocol/authenticator.h"
106 scoped_ptr<Authenticator> authenticator,
109 DCHECK(authenticator.get());
110 DCHECK_EQ(authenticator->state(), Authenticator::MESSAGE_READY);
113 authenticator_ = authenticator.Pass();
136 scoped_ptr<Authenticator> authenticator) {
139 DCHECK(authenticator.get());
140 DCHECK_EQ(authenticator->state(), Authenticator::WAITING_MESSAGE);
143 authenticator_ = authenticator.Pass();
486 LOG(WARNING) << "Received unexpected authenticator messag
104 StartConnection( const std::string& peer_jid, scoped_ptr<Authenticator> authenticator, scoped_ptr<CandidateSessionConfig> config) argument
134 InitializeIncomingConnection( const JingleMessage& initiate_message, scoped_ptr<Authenticator> authenticator) argument
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DAddress.java45 final OkAuthenticator authenticator; field in class:Address
50 OkAuthenticator authenticator, Proxy proxy, List<Protocol> protocols)
54 if (authenticator == null) throw new IllegalArgumentException("authenticator == null");
62 this.authenticator = authenticator;
102 * Returns the client's authenticator. This method never returns null.
105 return authenticator;
133 && equal(this.authenticator, that.authenticator)
48 Address(String uriHost, int uriPort, SocketFactory socketFactory, SSLSocketFactory sslSocketFactory, HostnameVerifier hostnameVerifier, OkAuthenticator authenticator, Proxy proxy, List<Protocol> protocols) argument
[all...]
H A DOkHttpClient.java67 private OkAuthenticator authenticator; field in class:OkHttpClient
245 * Sets the authenticator used to respond to challenges from the remote web
249 * authenticator will be used.
251 public OkHttpClient setAuthenticator(OkAuthenticator authenticator) { argument
252 this.authenticator = authenticator;
257 return authenticator;
499 if (result.authenticator == null) {
500 result.authenticator = HttpAuthenticator.SYSTEM_DEFAULT;
/external/chromium_org/remoting/client/
H A Dchromoting_client.cc53 scoped_ptr<protocol::Authenticator> authenticator,
67 authenticator.Pass(), host_jid, this);
51 Start( SignalStrategy* signal_strategy, scoped_ptr<protocol::Authenticator> authenticator, scoped_ptr<protocol::TransportFactory> transport_factory, const std::string& host_jid, const std::string& capabilities) argument
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_attr_process.c16 int wps_process_authenticator(struct wps_data *wps, const u8 *authenticator, argument
23 if (authenticator == NULL) {
31 "validating authenticator");
44 if (os_memcmp_const(hash, authenticator, WPS_AUTHENTICATOR_LEN) != 0) {
H A Dwps_attr_parse.h35 const u8 *authenticator; /* WPS_AUTHENTICATOR_LEN (8) octets */ member in struct:wps_parse_attr
/external/wpa_supplicant_8/src/wps/
H A Dwps_attr_process.c16 int wps_process_authenticator(struct wps_data *wps, const u8 *authenticator, argument
23 if (authenticator == NULL) {
31 "validating authenticator");
44 if (os_memcmp_const(hash, authenticator, WPS_AUTHENTICATOR_LEN) != 0) {
H A Dwps_attr_parse.h35 const u8 *authenticator; /* WPS_AUTHENTICATOR_LEN (8) octets */ member in struct:wps_parse_attr
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_attr_process.c16 int wps_process_authenticator(struct wps_data *wps, const u8 *authenticator, argument
23 if (authenticator == NULL) {
31 "validating authenticator");
44 if (os_memcmp_const(hash, authenticator, WPS_AUTHENTICATOR_LEN) != 0) {
H A Dwps_attr_parse.h35 const u8 *authenticator; /* WPS_AUTHENTICATOR_LEN (8) octets */ member in struct:wps_parse_attr
/external/chromium_org/chrome/browser/chromeos/login/lock/
H A Dscreen_locker.cc47 #include "chromeos/login/auth/authenticator.h"
267 // Special case: supervised users. Use special authenticator.
489 void ScreenLocker::SetAuthenticator(Authenticator* authenticator) { argument
490 authenticator_ = authenticator;
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DRouteSelectorTest.java81 private final OkAuthenticator authenticator = HttpAuthenticator.SYSTEM_DEFAULT; field in class:RouteSelectorTest
87 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
107 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
129 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator,
147 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator,
165 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
183 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
201 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
237 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
256 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, nul
[all...]
/external/openssl/crypto/krb5/
H A Dkrb5_asn.h129 ** authenticator[4] EncryptedData
141 KRB5_ENCDATA *authenticator; member in struct:krb5_ap_req_st
193 /* -- Unencrypted authenticator
195 ** authenticator-vno[0] INTEGER,
/external/openssl/include/openssl/
H A Dkrb5_asn.h129 ** authenticator[4] EncryptedData
141 KRB5_ENCDATA *authenticator; member in struct:krb5_ap_req_st
193 /* -- Unencrypted authenticator
195 ** authenticator-vno[0] INTEGER,
/external/openssl/ssl/
H A Dd1_clnt.c1072 krb5_data authenticator, *authp = NULL; local
1090 if (KRB5SENDAUTH) authp = &authenticator;
1131 ** optional authenticator omitted.
1154 s2n(0,p);/* null authenticator length */
H A Ds3_clnt.c2629 krb5_data authenticator, *authp = NULL; local
2647 if (KRB5SENDAUTH) authp = &authenticator;
2688 ** optional authenticator omitted.
2711 s2n(0,p);/* null authenticator length */
/external/ppp/pppd/
H A Dchap_ms.c858 u_char authResponse[], int authenticator)
884 SetMasterKeys(secret, secret_len, response->NTResp, authenticator);
856 ChapMS2(u_char *rchallenge, u_char *PeerChallenge, char *user, char *secret, int secret_len, MS_Chap2Response *response, u_char authResponse[], int authenticator) argument
/external/chromium_org/chrome/browser/chromeos/login/session/
H A Duser_session_manager.cc244 scoped_refptr<Authenticator> authenticator,
248 authenticator_ = authenticator;
1009 NULL, // authenticator
1037 // authenticator.
242 StartSession( const UserContext& user_context, scoped_refptr<Authenticator> authenticator, bool has_auth_cookies, bool has_active_session, UserSessionManagerDelegate* delegate) argument

Completed in 9066 milliseconds

12