Home
last modified time | relevance | path

Searched refs:authTokenType (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/android/accounts/
DAbstractAccountAuthenticator.java119 String authTokenType, String[] features, Bundle options) in addAccount() argument
123 + ", authTokenType " + authTokenType in addAccount()
130 accountType, authTokenType, features, options); in addAccount()
166 String authTokenType) in getAuthTokenLabel() argument
169 Log.v(TAG, "getAuthTokenLabel: authTokenType " + authTokenType); in getAuthTokenLabel()
175 AbstractAccountAuthenticator.this.getAuthTokenLabel(authTokenType)); in getAuthTokenLabel()
183 handleException(response, "getAuthTokenLabel", authTokenType, e); in getAuthTokenLabel()
188 Account account, String authTokenType, Bundle loginOptions) in getAuthToken() argument
192 + ", authTokenType " + authTokenType); in getAuthToken()
198 authTokenType, loginOptions); in getAuthToken()
[all …]
DIAccountManager.aidl48 String peekAuthToken(in Account account, String authTokenType); in peekAuthToken() argument
49 void setAuthToken(in Account account, String authTokenType, String authToken); in setAuthToken() argument
53 void updateAppPermission(in Account account, String authTokenType, int uid, boolean value); in updateAppPermission() argument
56 String authTokenType, boolean notifyOnAuthFailure, boolean expectActivityLaunch, in getAuthToken() argument
59 String authTokenType, in String[] requiredFeatures, boolean expectActivityLaunch, in addAccount() argument
62 String authTokenType, in String[] requiredFeatures, boolean expectActivityLaunch, in addAccountAsUser() argument
65 String authTokenType, boolean expectActivityLaunch, in Bundle options); in updateCredentials() argument
71 String authTokenType); in getAuthTokenLabel() argument
DAccountManager.java511 public void updateAppPermission(Account account, String authTokenType, int uid, boolean value) { in updateAppPermission() argument
513 mService.updateAppPermission(account, authTokenType, uid, value); in updateAppPermission()
530 final String accountType, final String authTokenType, in getAuthTokenLabel() argument
533 if (authTokenType == null) throw new IllegalArgumentException("authTokenType is null"); in getAuthTokenLabel()
536 mService.getAuthTokenLabel(mResponse, accountType, authTokenType); in getAuthTokenLabel()
935 public String peekAuthToken(final Account account, final String authTokenType) {
937 if (authTokenType == null) throw new IllegalArgumentException("authTokenType is null");
939 return mService.peekAuthToken(account, authTokenType);
1037 public void setAuthToken(Account account, final String authTokenType, final String authToken) {
1039 if (authTokenType == null) throw new IllegalArgumentException("authTokenType is null");
[all …]
DIAccountAuthenticator.aidl32 String authTokenType, in String[] requiredFeatures, in Bundle options); in addAccount() argument
44 String authTokenType, in Bundle options); in getAuthToken() argument
49 void getAuthTokenLabel(in IAccountAuthenticatorResponse response, String authTokenType); in getAuthTokenLabel() argument
55 String authTokenType, in Bundle options); in updateCredentials() argument
DChooseTypeAndAccountActivity.java379 final String authTokenType = getIntent().getStringExtra( in runAddAccountForAuthenticator() local
381 AccountManager.get(this).addAccount(type, authTokenType, requiredFeatures, in runAddAccountForAuthenticator()
/frameworks/volley/src/com/android/volley/toolbox/
DAndroidAuthenticator.java44 public AndroidAuthenticator(Context context, Account account, String authTokenType) { in AndroidAuthenticator() argument
45 this(context, account, authTokenType, false); in AndroidAuthenticator()
55 public AndroidAuthenticator(Context context, Account account, String authTokenType, in AndroidAuthenticator() argument
59 mAuthTokenType = authTokenType; in AndroidAuthenticator()
/frameworks/base/services/core/java/com/android/server/accounts/
DAccountManagerService.java1310 String authTokenType = cursor.getString(2); in invalidateAuthTokenLocked() local
1313 authTokenType, null); in invalidateAuthTokenLocked()
1355 public String peekAuthToken(Account account, String authTokenType) { in peekAuthToken() argument
1358 + ", authTokenType " + authTokenType in peekAuthToken()
1363 if (authTokenType == null) throw new IllegalArgumentException("authTokenType is null"); in peekAuthToken()
1368 return readAuthTokenInternal(accounts, account, authTokenType); in peekAuthToken()
1375 public void setAuthToken(Account account, String authTokenType, String authToken) { in setAuthToken() argument
1378 + ", authTokenType " + authTokenType in setAuthToken()
1383 if (authTokenType == null) throw new IllegalArgumentException("authTokenType is null"); in setAuthToken()
1388 saveAuthTokenToDatabase(accounts, account, authTokenType, authToken); in setAuthToken()
[all …]
/frameworks/base/test-runner/src/android/test/
DIsolatedContext.java143 public String blockingGetAuthToken(Account account, String authTokenType, in blockingGetAuthToken() argument