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

1 2 3 4

  /cts/tests/tests/accounts/common/src/android/accounts/cts/common/tx/
GetAuthTokenLabelTx.java 22 public final String authTokenType;
26 authTokenType = in.readString();
31 String authTokenType,
33 this.authTokenType = authTokenType;
44 out.writeString(authTokenType);
AddAccountTx.java 27 public final String authTokenType;
34 authTokenType = in.readString();
42 String authTokenType,
47 this.authTokenType = authTokenType;
65 out.writeString(authTokenType);
GetAuthTokenTx.java 25 public final String authTokenType;
31 authTokenType = in.readString();
38 String authTokenType,
42 this.authTokenType = authTokenType;
55 out.writeString(authTokenType);
StartAddAccountSessionTx.java 27 public final String authTokenType;
33 authTokenType = in.readString();
40 String authTokenType,
44 this.authTokenType = authTokenType;
61 out.writeString(authTokenType);
StartUpdateCredentialsSessionTx.java 25 public final String authTokenType;
30 authTokenType = in.readString();
36 String authTokenType,
39 this.authTokenType = authTokenType;
51 out.writeString(authTokenType);
UpdateCredentialsTx.java 25 public final String authTokenType;
31 authTokenType = in.readString();
38 String authTokenType,
42 this.authTokenType = authTokenType;
55 out.writeString(authTokenType);
  /frameworks/base/core/java/android/accounts/
IAccountAuthenticator.aidl 32 String authTokenType, in String[] requiredFeatures, in Bundle options);
44 String authTokenType, in Bundle options);
49 void getAuthTokenLabel(in IAccountAuthenticatorResponse response, String authTokenType);
55 String authTokenType, in Bundle options);
92 String authTokenType, in String[] requiredFeatures, in Bundle options);
98 String authTokenType, in Bundle options);
AbstractAccountAuthenticator.java 158 String authTokenType, String[] features, Bundle options)
162 + ", authTokenType " + authTokenType
169 accountType, authTokenType, features, options);
211 String authTokenType)
214 Log.v(TAG, "getAuthTokenLabel: authTokenType " + authTokenType);
220 AbstractAccountAuthenticator.this.getAuthTokenLabel(authTokenType));
230 handleException(response, "getAuthTokenLabel", authTokenType, e);
236 Account account, String authTokenType, Bundle loginOptions
    [all...]
IAccountManager.aidl 56 String peekAuthToken(in Account account, String authTokenType);
57 void setAuthToken(in Account account, String authTokenType, String authToken);
61 void updateAppPermission(in Account account, String authTokenType, int uid, boolean value);
64 String authTokenType, boolean notifyOnAuthFailure, boolean expectActivityLaunch,
67 String authTokenType, in String[] requiredFeatures, boolean expectActivityLaunch,
70 String authTokenType, in String[] requiredFeatures, boolean expectActivityLaunch,
73 String authTokenType, boolean expectActivityLaunch, in Bundle options);
80 String authTokenType);
94 String authTokenType, in String[] requiredFeatures, boolean expectActivityLaunch,
99 String authTokenType, boolean expectActivityLaunch, in Bundle options)
    [all...]
  /external/volley/src/main/java/com/android/volley/toolbox/
AndroidAuthenticator.java 45 * @param authTokenType Auth token type passed to AccountManager
47 public AndroidAuthenticator(Context context, Account account, String authTokenType) {
48 this(context, account, authTokenType, false);
55 * @param authTokenType Auth token type passed to AccountManager
58 public AndroidAuthenticator(Context context, Account account, String authTokenType,
60 this(AccountManager.get(context), account, authTokenType, notifyAuthFailure);
65 String authTokenType, boolean notifyAuthFailure) {
68 mAuthTokenType = authTokenType;
  /development/apps/PushApiAuthenticator/src/com/example/android/pushapiauthenticator/
MyAccountAuthenticator.java 38 String authTokenType, String[] requiredFeatures, Bundle options) {
43 String authTokenType, Bundle options) {
56 public String getAuthTokenLabel(String authTokenType) {
66 String authTokenType, Bundle options) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/accounts/
AuthUtils.java 53 final String authTokenType, final Bundle options, final boolean notifyAuthFailure,
55 return mAccountManager.getAuthToken(account, authTokenType, options, notifyAuthFailure,
62 public String blockingGetAuthToken(final Account account, final String authTokenType,
65 return mAccountManager.blockingGetAuthToken(account, authTokenType, notifyAuthFailure);
  /cts/tests/tests/accounts/common/src/android/accounts/cts/common/
TestDefaultAuthenticator.java 54 String authTokenType,
73 new AddAccountTx(accountType, authTokenType, requiredFeatures, options, result));
90 String authTokenType,
97 public String getAuthTokenLabel(String authTokenType) {
106 String authTokenType,
115 new UpdateCredentialsTx(account, authTokenType, options, result));
TestAccountAuthenticator.java 62 String authTokenType,
76 new AddAccountTx(accountType, authTokenType, requiredFeatures, options, result));
156 String authTokenType,
163 new GetAuthTokenTx(account, authTokenType, options, result));
209 public String getAuthTokenLabel(String authTokenType) {
210 String result = "Label:" + authTokenType;
212 new GetAuthTokenLabelTx(authTokenType, result));
220 String authTokenType,
227 new UpdateCredentialsTx(account, authTokenType, options, result));
313 String authTokenType,
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
TestAccountType2Authenticator.java 56 String authTokenType,
76 String authTokenType,
83 public String getAuthTokenLabel(String authTokenType) {
92 String authTokenType,
111 String authTokenType,
122 String authTokenType,
  /cts/hostsidetests/devicepolicy/app/AccountManagement/src/com/android/cts/devicepolicy/accountmanagement/
MockAccountAuthenticator.java 51 String authTokenType, String[] requiredFeatures, Bundle options)
63 String authTokenType, Bundle options) throws NetworkErrorException {
78 String authTokenType, Bundle options) throws NetworkErrorException {
83 public String getAuthTokenLabel(String authTokenType) {
  /cts/tests/tests/content/src/android/content/cts/
MockAccountAuthenticator.java 51 String authTokenType, String[] requiredFeatures, Bundle options)
63 String authTokenType, Bundle options) throws NetworkErrorException {
78 String authTokenType, Bundle options) throws NetworkErrorException {
83 public String getAuthTokenLabel(String authTokenType) {
  /cts/tests/tests/provider/src/android/provider/cts/contacts/account/
StaticAccountAuthenticator.java 62 String authTokenType, String[] requiredFeatures, Bundle options)
77 String authTokenType, Bundle options) throws NetworkErrorException {
82 public String getAuthTokenLabel(String authTokenType) {
88 String authTokenType, Bundle options) throws NetworkErrorException {
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AccountManagerTest.java 30 private String authTokenType;
39 authTokenType = "authTokenType";
46 accountManager.getAuthTokenByFeatures(accountType, authTokenType, features, activity, null, null, null, null);
56 accountManager.getAuthTokenByFeatures(accountType, authTokenType, features, activity, null, null, null, null);
66 accountManager.getAuthTokenByFeatures(accountType, authTokenType, features, activity, null, null, null, null);
82 accountManager.getAuthTokenByFeatures(accountType, authTokenType, features, activity, null, null, null, null);
93 accountManager.getAuthToken(ACCOUNT, authTokenType, null, activity, null, null);
132 shadowOf(accountManager).setCachedAuthToken(ACCOUNT, authTokenType, "myToken");
134 String authToken = accountManager.peekAuthToken(ACCOUNT, authTokenType);
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
Authenticator.java 65 String authTokenType, String[] requiredFeatures, Bundle options) {
89 String authTokenType, Bundle loginOptions) throws NetworkErrorException {
94 if (!authTokenType.equals(Constants.AUTHTOKEN_TYPE)) {
96 result.putString(AccountManager.KEY_ERROR_MESSAGE, "invalid authTokenType");
120 intent.putExtra(AuthenticatorActivity.PARAM_AUTHTOKEN_TYPE, authTokenType);
128 public String getAuthTokenLabel(String authTokenType) {
148 String authTokenType, Bundle loginOptions) {
  /cts/hostsidetests/devicepolicy/app/AccountCheck/Auth/src/com/android/cts/devicepolicy/accountcheck/
TestAuthenticator.java 60 String authTokenType, String[] requiredFeatures, Bundle options)
93 String authTokenType, Bundle options) throws NetworkErrorException {
105 String authTokenType, Bundle options) throws NetworkErrorException {
110 public String getAuthTokenLabel(String authTokenType) {
  /cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/
BatteryStatsAuthenticator.java 97 String authTokenType, String[] requiredFeatures, Bundle options)
109 String authTokenType, Bundle options) throws NetworkErrorException {
121 String authTokenType, Bundle options) throws NetworkErrorException {
126 public String getAuthTokenLabel(String authTokenType) {
  /packages/apps/Email/provider_src/com/android/email/service/
EasTestAuthenticatorService.java 49 String authTokenType, String[] requiredFeatures, Bundle options)
91 String authTokenType, Bundle loginOptions) throws NetworkErrorException {
96 public String getAuthTokenLabel(String authTokenType) {
109 String authTokenType, Bundle loginOptions) {
  /cts/hostsidetests/devicepolicy/app/AccountCheck/Tester/src/com/android/cts/devicepolicy/accountcheck/tester/
TestAuthenticator.java 92 String authTokenType, String[] requiredFeatures, Bundle options) {
103 String authTokenType, Bundle options) throws NetworkErrorException {
115 String authTokenType, Bundle options) throws NetworkErrorException {
120 public String getAuthTokenLabel(String authTokenType) {
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
AccountAuthenticator.java 72 String authTokenType, String[] requiredFeatures, Bundle options)
84 String authTokenType, Bundle options) throws NetworkErrorException {
99 String authTokenType, Bundle options) throws NetworkErrorException {
104 public String getAuthTokenLabel(String authTokenType) {

Completed in 297 milliseconds

1 2 3 4