HomeSort by relevance Sort by last modified time
    Searched defs:Authenticator (Results 1 - 25 of 70) sorted by null

1 2 3

  /frameworks/base/obex/javax/obex/
Authenticator.java 83 public interface Authenticator {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Authenticator.java 24 public interface Authenticator {
  /external/volley/src/main/java/com/android/volley/toolbox/
Authenticator.java 24 public interface Authenticator {
  /frameworks/base/telecomm/java/android/telecom/
AuthenticatorService.java 29 * A generic stub account authenticator service often used for sync adapters that do not directly
35 private static Authenticator mAuthenticator;
39 mAuthenticator = new Authenticator(this);
48 * Stub account authenticator. All methods either return null or throw an exception.
50 public class Authenticator extends AbstractAccountAuthenticator {
51 public Authenticator(Context context) {
  /packages/apps/Settings/tests/unit/src/com/android/settings/accounts/
Authenticator.java 26 public class Authenticator extends AbstractAccountAuthenticator {
28 public Authenticator(Context context) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
Authenticator.java 27 public class Authenticator extends AbstractAccountAuthenticator {
30 public Authenticator(Context context) {
  /cts/hostsidetests/content/test-apps/CtsSyncInvalidAccountAuthorityTestCases/src/android/content/sync/cts/
StubAuthenticator.java 32 private Authenticator mAuthenticator;
36 mAuthenticator = new Authenticator(this);
44 public class Authenticator extends AbstractAccountAuthenticator {
45 public Authenticator(Context context) {
  /cts/hostsidetests/devicepolicy/app/AccountCheck/Auth/src/com/android/cts/devicepolicy/accountcheck/
TestAuthenticator.java 38 private static Authenticator sInstance;
43 sInstance = new Authenticator(getApplicationContext());
49 public static class Authenticator extends AbstractAccountAuthenticator {
53 public Authenticator(Context context) {
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/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) {
  /cts/hostsidetests/devicepolicy/app/AccountCheck/Tester/src/com/android/cts/devicepolicy/accountcheck/tester/
TestAuthenticator.java 41 private static Authenticator sInstance;
46 sInstance = new Authenticator(getApplicationContext());
81 public static class Authenticator extends AbstractAccountAuthenticator {
85 public Authenticator(Context context) {
  /cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/
BatteryStatsAuthenticator.java 33 * Authenticator for the sync test.
41 private static Authenticator sInstance;
46 sInstance = new Authenticator(getApplicationContext());
86 public static class Authenticator extends AbstractAccountAuthenticator {
90 public Authenticator(Context context) {
  /cts/hostsidetests/statsd/apps/statsdapp/src/com/android/server/cts/device/statsd/
StatsdAuthenticator.java 33 * Authenticator for the sync test.
40 private static Authenticator sInstance;
45 sInstance = new Authenticator(getApplicationContext());
85 public static class Authenticator extends AbstractAccountAuthenticator {
89 public Authenticator(Context context) {
  /cts/tests/tests/content/SyncAccountAccessStubs/src/com/android/cts/stub/
StubAuthenticator.java 34 private Authenticator mAuthenticator;
38 mAuthenticator = new Authenticator(this);
46 public class Authenticator extends AbstractAccountAuthenticator {
47 public Authenticator(Context context) {
  /cts/tests/tests/syncmanager/apps/app1/src/android/content/syncmanager/cts/app/
SyncManagerCtsAuthenticator.java 37 * Authenticator for the sync test.
42 private static Authenticator sInstance;
47 sInstance = new Authenticator(getApplicationContext());
94 public static class Authenticator extends AbstractAccountAuthenticator {
98 public Authenticator(Context context) {
  /development/samples/DeviceAdminWhitelistedAccount/src/com/example/android/app/admin/whitelistedaccount/
MyAuthenticator.java 38 private static Authenticator sInstance;
43 sInstance = new Authenticator(getApplicationContext());
62 public static class Authenticator extends AbstractAccountAuthenticator {
66 public Authenticator(Context context) {
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
Authenticator.java 17 package com.example.android.samplesync.authenticator;
50 class Authenticator extends AbstractAccountAuthenticator {
53 private static final String TAG = "Authenticator";
58 public Authenticator(Context context) {
137 // This call is used to query whether the Authenticator supports
  /libcore/ojluni/src/main/java/java/net/
Authenticator.java 29 * The class Authenticator represents an object that knows how to obtain
42 * with the system by calling {@link #setDefault(Authenticator)}.
50 * @see java.net.Authenticator#setDefault(java.net.Authenticator)
51 * @see java.net.Authenticator#getPasswordAuthentication()
60 class Authenticator {
62 // The system-wide authenticator object. See setDefault().
63 private static Authenticator theAuthenticator;
103 * Sets the authenticator that will be used by the networking code
111 * @param a The authenticator to be set. If a is {@code null} the
    [all...]
  /packages/apps/Email/provider_src/com/android/email/service/
AuthenticatorService.java 38 * A very basic authenticator service for EAS. At the moment, it has no UI hooks. When called
49 class Authenticator extends AbstractAccountAuthenticator {
51 public Authenticator(Context context) {
160 return new Authenticator(this).getIBinder();
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 21 import java.net.Authenticator;
273 // Set up test Authenticator
274 Authenticator.setDefault(new Authenticator() {
302 // remove previously set authenticator
303 Authenticator.setDefault(null);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
HttpOverSpdyTest.java 34 import java.net.Authenticator;
93 Authenticator.setDefault(null);
221 Authenticator.setDefault(new RecordingAuthenticator());
  /prebuilts/tools/common/mkidentity/
mkidentity-prebuilt.jar 
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
URLConnectionTest.java 35 import java.net.Authenticator;
119 Authenticator.setDefault(null);
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
URLConnectionTest.java 37 import java.net.Authenticator;
118 Authenticator.setDefault(null);
    [all...]

Completed in 742 milliseconds

1 2 3