OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Authenticator
(Results
1 - 25
of
34
) sorted by null
1
2
/external/chromium_org/chrome/browser/chromeos/login/
authenticator.cc
5
#include "chrome/browser/chromeos/login/
authenticator
.h"
11
Authenticator
::
Authenticator
(LoginStatusConsumer* consumer)
16
Authenticator
::~
Authenticator
() {}
18
void
Authenticator
::SetConsumer(LoginStatusConsumer* consumer) {
authenticator.h
26
class
Authenticator
: public base::RefCountedThreadSafe<
Authenticator
> {
28
explicit
Authenticator
(LoginStatusConsumer* consumer);
94
virtual ~
Authenticator
();
100
friend class base::RefCountedThreadSafe<
Authenticator
>;
102
DISALLOW_COPY_AND_ASSIGN(
Authenticator
);
/external/chromium_org/chrome/browser/resources/gaia_auth/
main.js
6
*
Authenticator
class wraps the communications between Gaia and its host.
8
function
Authenticator
() {
15
Authenticator
.THIS_EXTENSION_ORIGIN =
19
* Singleton getter of
Authenticator
.
20
* @return {Object} The singleton instance of
Authenticator
.
22
Authenticator
.getInstance = function() {
23
if (!
Authenticator
.instance_) {
24
Authenticator
.instance_ = new
Authenticator
();
26
return
Authenticator
.instance_
[
all
...]
/external/chromium/chrome/browser/chromeos/login/
authenticator.cc
5
#include "chrome/browser/chromeos/login/
authenticator
.h"
18
const char
Authenticator
::kSpecialCaseDomain[] = "gmail.com";
20
Authenticator
::
Authenticator
(LoginStatusConsumer* consumer)
24
Authenticator
::~
Authenticator
() {}
27
std::string
Authenticator
::Canonicalize(const std::string& email_address) {
authenticator.h
24
class
Authenticator
: public base::RefCountedThreadSafe<
Authenticator
> {
29
explicit
Authenticator
(LoginStatusConsumer* consumer);
30
virtual ~
Authenticator
();
100
DISALLOW_COPY_AND_ASSIGN(
Authenticator
);
/frameworks/base/obex/javax/obex/
Authenticator.java
83
public interface
Authenticator
{
/frameworks/volley/src/com/android/volley/toolbox/
Authenticator.java
24
public interface
Authenticator
{
/external/chromium_org/remoting/protocol/
authenticator.h
27
//
Authenticator
is an abstract interface for authentication protocol
34
//
Authenticator
may exchange multiple messages before session is
35
// authenticated. Each message sent/received by an
Authenticator
is
40
class
Authenticator
{
75
// Returns true if |message| is an
Authenticator
message.
78
// Creates an empty
Authenticator
message, owned by the caller.
81
// Finds
Authenticator
message among child elements of |message|, or
86
Authenticator
() {}
87
virtual ~
Authenticator
() {}
89
// Returns current state of the
authenticator
[
all
...]
/developers/build/prebuilts/gradle/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/common/accounts/
GenericAccountService.java
33
private
Authenticator
mAuthenticator;
41
* that "caller uid XXXXX is different than the
authenticator
's uid".
62
mAuthenticator = new
Authenticator
(this);
75
public class
Authenticator
extends AbstractAccountAuthenticator {
76
public
Authenticator
(Context context) {
/developers/samples/android/common/src/java/com/example/android/common/accounts/
GenericAccountService.java
33
private
Authenticator
mAuthenticator;
41
* that "caller uid XXXXX is different than the
authenticator
's uid".
62
mAuthenticator = new
Authenticator
(this);
75
public class
Authenticator
extends AbstractAccountAuthenticator {
76
public
Authenticator
(Context context) {
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/accounts/
GenericAccountService.java
33
private
Authenticator
mAuthenticator;
41
* that "caller uid XXXXX is different than the
authenticator
's uid".
62
mAuthenticator = new
Authenticator
(this);
75
public class
Authenticator
extends AbstractAccountAuthenticator {
76
public
Authenticator
(Context context) {
/libcore/luni/src/main/java/java/net/
Authenticator.java
23
*
authenticator
which extends {@code
Authenticator
} by {@code
24
* setDefault(
Authenticator
a)}. Then it should override {@code
31
public abstract class
Authenticator
{
33
// the default
authenticator
that needs to be set
34
private static
Authenticator
thisAuthenticator;
108
*
authenticator
to get the authentication info.
110
* @return password authentication info or {@code null} if no
authenticator
139
//
Authenticator
144
* Sets {@code a} as the default
authenticator
. It will be called wheneve
[
all
...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
AuthenticatorTest.java
22
import java.net.
Authenticator
;
30
import java.net.
Authenticator
.RequestorType;
38
* @tests java.net.
Authenticator
.RequestorType#valueOf(String)
41
assertEquals(RequestorType.PROXY,
Authenticator
.RequestorType
43
assertEquals(RequestorType.SERVER,
Authenticator
.RequestorType
46
RequestorType rt =
Authenticator
.RequestorType.valueOf("BADNAME");
54
Authenticator
.RequestorType.valueOf(null);
64
* @tests java.net.
Authenticator
.RequestorType#values()
73
* @tests java.net.
Authenticator
#requestPasswordAuthentication(java.net.InetAddress, int, String, String, String)
79
Authenticator
.setDefault(mock)
[
all
...]