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

1 2

  /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 8 #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());
secure_channel_factory.h 17 class Authenticator;
23 // Authenticator to secure and authenticate the new channel before returning it
29 Authenticator* authenticator);
50 Authenticator* authenticator_;
secure_channel_factory.cc 9 #include "remoting/protocol/authenticator.h"
17 Authenticator* authenticator)
19 authenticator_(authenticator) {
20 DCHECK_EQ(authenticator_->state(), Authenticator::ACCEPTED);
fake_authenticator.cc 109 Authenticator::State FakeAuthenticator::state() const {
139 Authenticator::RejectionReason FakeAuthenticator::rejection_reason() const {
186 scoped_ptr<Authenticator> FakeHostAuthenticatorFactory::CreateAuthenticator(
190 FakeAuthenticator* authenticator = new FakeAuthenticator( local
192 authenticator->set_messages_till_started(messages_till_started_);
194 scoped_ptr<Authenticator> result(authenticator);
jingle_session_unittest.cc 17 #include "remoting/protocol/authenticator.h"
254 scoped_ptr<Authenticator> authenticator(new FakeAuthenticator(
258 kHostJid, authenticator.Pass(),
339 scoped_ptr<Authenticator> authenticator(new FakeAuthenticator(
342 kHostJid, authenticator.Pass(), CandidateSessionConfig::CreateDefault());
413 scoped_ptr<Authenticator> authenticator(new FakeAuthenticator(
417 kHostJid, authenticator.Pass()
    [all...]
jingle_session_manager.h 54 scoped_ptr<Authenticator> authenticator,
jingle_session.cc 15 #include "remoting/protocol/authenticator.h"
59 Authenticator::RejectionReason reason) {
61 case Authenticator::INVALID_CREDENTIALS:
63 case Authenticator::PROTOCOL_ERROR:
106 scoped_ptr<Authenticator> authenticator,
109 DCHECK(authenticator.get());
110 DCHECK_EQ(authenticator->state(), Authenticator::MESSAGE_READY);
113 authenticator_ = authenticator.Pass()
    [all...]
jingle_session.h 17 #include "remoting/protocol/authenticator.h"
83 scoped_ptr<Authenticator> authenticator,
91 scoped_ptr<Authenticator> authenticator);
130 // Called after the initial incoming authenticator message is processed.
133 // Called after subsequent authenticator messages are processed.
165 scoped_ptr<Authenticator> authenticator_;
protocol_mock_objects.h 17 #include "remoting/protocol/authenticator.h"
196 Authenticator* authenticator,
203 scoped_ptr<Authenticator> authenticator,
206 host_jid, authenticator.get(), config.get()));
connection_to_host.h 36 class Authenticator;
104 // |authenticator| will be used to authenticate the session and data channels.
110 scoped_ptr<Authenticator> authenticator,
160 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...]
  /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 53 scoped_ptr<protocol::Authenticator> authenticator,
67 authenticator.Pass(), host_jid, this);
chromoting_client.h 58 scoped_ptr<protocol::Authenticator> authenticator,
  /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 35 class Authenticator;
135 // Sets the authenticator.
136 void SetAuthenticator(Authenticator* authenticator);
157 scoped_refptr<Authenticator> authenticator_;
  /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/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpAuthenticator.java 25 import java.net.Authenticator;
40 /** Uses the global authenticator to get the password. */
50 PasswordAuthentication auth = Authenticator.requestPasswordAuthentication(url.getHost(),
52 challenge.getRealm(), challenge.getScheme(), url, Authenticator.RequestorType.SERVER);
69 PasswordAuthentication auth = Authenticator.requestPasswordAuthentication(
72 Authenticator.RequestorType.PROXY);
96 OkAuthenticator authenticator, Response response, Proxy proxy) throws IOException {
113 ? authenticator.authenticateProxy(proxy, request.url(), challenges)
114 : authenticator.authenticate(proxy, request.url(), challenges);

Completed in 732 milliseconds

1 2