HomeSort by relevance Sort by last modified time
    Searched refs:authenticator (Results 1 - 25 of 130) sorted by null

1 2 3 4 5 6

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Address.java 45 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)
    [all...]
OkHttpClient.java 67 private OkAuthenticator authenticator; field in class:OkHttpClient
245 * Sets the authenticator used to respond to challenges from the remote web
248 * <p>If unset, the {@link java.net.Authenticator#setDefault system-wide default}
249 * authenticator will be used.
251 public OkHttpClient setAuthenticator(OkAuthenticator authenticator) {
252 this.authenticator = authenticator;
257 return authenticator;
499 if (result.authenticator == null) {
500 result.authenticator = HttpAuthenticator.SYSTEM_DEFAULT
    [all...]
  /external/chromium_org/remoting/protocol/
session_manager.h 23 // delegate authentication to an Authenticator implementation. For
26 // method. For outgoing sessions authenticator must be passed to the
69 class Authenticator;
131 // |authenticator| is a client authenticator for the session.
135 scoped_ptr<Authenticator> authenticator,
143 // Set authenticator factory that should be used to authenticate
145 // authenticator factory isn't set. Must not be called more than
pairing_authenticator_base.h 9 #include "remoting/protocol/authenticator.h"
15 // The pairing authenticator builds on top of V2Authenticator to add
39 class PairingAuthenticatorBase : public Authenticator {
44 // Authenticator interface.
55 typedef base::Callback<void(scoped_ptr<Authenticator> authenticator)>
61 // Create a V2 authenticator in the specified state, prompting the user for
67 // Amend an authenticator message, for example to add client- or host-specific
77 // The underlying V2 authenticator, created with either the PIN or the
79 scoped_ptr<Authenticator> v2_authenticator_
    [all...]
pairing_authenticator_base.cc 34 Authenticator::State PairingAuthenticatorBase::state() const {
48 Authenticator::RejectionReason
61 // 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();
jingle_session_manager.cc 10 #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());
fake_authenticator.cc 98 Authenticator::State FakeAuthenticator::state() const {
128 Authenticator::RejectionReason FakeAuthenticator::rejection_reason() const {
175 scoped_ptr<Authenticator> FakeHostAuthenticatorFactory::CreateAuthenticator(
179 FakeAuthenticator* authenticator = new FakeAuthenticator( local
181 authenticator->set_messages_till_started(messages_till_started_);
183 scoped_ptr<Authenticator> result(authenticator);
jingle_session_unittest.cc 20 #include "remoting/protocol/authenticator.h"
253 scoped_ptr<Authenticator> authenticator(new FakeAuthenticator(
257 kHostJid, authenticator.Pass(),
338 scoped_ptr<Authenticator> authenticator(new FakeAuthenticator(
341 kHostJid, authenticator.Pass(), CandidateSessionConfig::CreateDefault());
412 scoped_ptr<Authenticator> authenticator(new FakeAuthenticator(
416 kHostJid, authenticator.Pass()
    [all...]
jingle_session_manager.h 54 scoped_ptr<Authenticator> authenticator,
transport.h 94 // |authenticator| is used to secure and authenticate the connection.
97 scoped_ptr<ChannelAuthenticator> authenticator) = 0;
jingle_session.cc 16 #include "remoting/protocol/authenticator.h"
56 Authenticator::RejectionReason reason) {
58 case Authenticator::INVALID_CREDENTIALS:
60 case Authenticator::PROTOCOL_ERROR:
101 scoped_ptr<Authenticator> authenticator,
104 DCHECK(authenticator.get());
105 DCHECK_EQ(authenticator->state(), Authenticator::MESSAGE_READY);
108 authenticator_ = authenticator.Pass()
    [all...]
jingle_session.h 18 #include "remoting/protocol/authenticator.h"
84 scoped_ptr<Authenticator> authenticator,
92 scoped_ptr<Authenticator> authenticator);
131 // Called after the initial incoming authenticator message is processed.
134 // Called after subsequent authenticator messages are processed.
163 scoped_ptr<Authenticator> authenticator_;
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
AuthenticationService.java 17 package com.example.android.samplesync.authenticator;
25 * Service to handle Account authentication. It instantiates the authenticator
32 private Authenticator mAuthenticator;
39 mAuthenticator = new Authenticator(this);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
RouteSelectorTest.java 81 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, null
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius.c 225 { RADIUS_ATTR_MESSAGE_AUTHENTICATOR, "Message-Authenticator",
364 "Message-Authenticator");
394 wpa_printf(MSG_ERROR, "WARNING: Could not add Message-Authenticator");
398 os_memcpy(msg->hdr->authenticator, req_authenticator,
399 sizeof(msg->hdr->authenticator));
412 md5_vector(4, addr, len, msg->hdr->authenticator);
436 wpa_printf(MSG_WARNING, "Could not add Message-Authenticator");
441 os_memcpy(msg->hdr->authenticator, req_hdr->authenticator, 16);
450 if (md5_vector(2, addr, len, msg->hdr->authenticator) < 0
    [all...]
  /development/samples/SampleSyncAdapter/tests/src/com/example/android/samplesync/authenticator/
AuthenticatorActivityTest.java 16 package com.example.android.samplesync.authenticator;
  /external/chromium_org/remoting/client/
chromoting_client.cc 57 scoped_ptr<protocol::Authenticator> authenticator(
76 authenticator.Pass(),
  /external/chromium_org/remoting/host/
pam_authorization_factory_posix.cc 20 class PamAuthorizer : public protocol::Authenticator {
22 PamAuthorizer(scoped_ptr<protocol::Authenticator> underlying);
25 // protocol::Authenticator interface.
45 scoped_ptr<protocol::Authenticator> underlying_;
50 PamAuthorizer::PamAuthorizer(scoped_ptr<protocol::Authenticator> underlying)
58 protocol::Authenticator::State PamAuthorizer::state() const {
70 protocol::Authenticator::RejectionReason
167 scoped_ptr<protocol::Authenticator>
172 scoped_ptr<protocol::Authenticator> authenticator(
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/lock/
screen_locker.h 34 class Authenticator;
134 // Sets the authenticator.
135 void SetAuthenticator(Authenticator* authenticator);
156 scoped_refptr<Authenticator> authenticator_;
  /external/chromium_org/chrome/browser/chromeos/login/session/
session_manager.h 13 #include "chrome/browser/chromeos/login/auth/authenticator.h"
63 // Start user session given |user_context| and |authenticator| which holds
66 scoped_refptr<Authenticator> authenticator,
143 scoped_refptr<Authenticator> authenticator_;
  /external/chromium_org/third_party/openssl/openssl/crypto/krb5/
krb5_asn.h 129 ** authenticator[4] EncryptedData
141 KRB5_ENCDATA *authenticator; member in struct:krb5_ap_req_st
148 /* Authenticator Stuff */
193 /* -- Unencrypted authenticator
194 ** Authenticator ::= [APPLICATION 2] SEQUENCE {
195 ** authenticator-vno[0] INTEGER,
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
krb5_asn.h 129 ** authenticator[4] EncryptedData
141 KRB5_ENCDATA *authenticator; member in struct:krb5_ap_req_st
148 /* Authenticator Stuff */
193 /* -- Unencrypted authenticator
194 ** Authenticator ::= [APPLICATION 2] SEQUENCE {
195 ** authenticator-vno[0] INTEGER,
  /external/openssl/crypto/krb5/
krb5_asn.h 129 ** authenticator[4] EncryptedData
141 KRB5_ENCDATA *authenticator; member in struct:krb5_ap_req_st
148 /* Authenticator Stuff */
193 /* -- Unencrypted authenticator
194 ** Authenticator ::= [APPLICATION 2] SEQUENCE {
195 ** authenticator-vno[0] INTEGER,
  /external/openssl/include/openssl/
krb5_asn.h 129 ** authenticator[4] EncryptedData
141 KRB5_ENCDATA *authenticator; member in struct:krb5_ap_req_st
148 /* Authenticator Stuff */
193 /* -- Unencrypted authenticator
194 ** Authenticator ::= [APPLICATION 2] SEQUENCE {
195 ** authenticator-vno[0] INTEGER,
  /external/wpa_supplicant_8/src/wps/
wps_attr_parse.h 35 const u8 *authenticator; /* WPS_AUTHENTICATOR_LEN (8) octets */ member in struct:wps_parse_attr

Completed in 1002 milliseconds

1 2 3 4 5 6