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

1 2 3

  /frameworks/volley/src/main/java/com/android/volley/toolbox/
Authenticator.java 35 public void invalidateAuthToken(String authToken);
AndroidAuthenticator.java 95 String authToken = null;
101 authToken = result.getString(AccountManager.KEY_AUTHTOKEN);
103 if (authToken == null) {
107 return authToken;
111 public void invalidateAuthToken(String authToken) {
112 mAccountManager.invalidateAuthToken(mAccount.type, authToken);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/accounts/
AuthUtils.java 44 public void invalidateAuthToken(final String accountType, final String authToken) {
45 mAccountManager.invalidateAuthToken(accountType, authToken);
  /external/jetty/src/java/org/eclipse/jetty/security/
SpnegoLoginService.java 117 byte[] authToken = B64Code.decode(encodedAuthToken);
135 authToken = gContext.acceptSecContext(authToken,0,authToken.length);
147 SpnegoUserPrincipal user = new SpnegoUserPrincipal(clientName,authToken);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
AuthenticatorActivity.java 70 * doesn't cause the user's password or authToken to be changed on the
186 * authToken that's returned from the server as the 'password' for this
191 private void finishLogin(String authToken) {
213 * @param authToken the authentication token returned by the server, or NULL if
216 public void onAuthenticationResult(String authToken) {
218 boolean success = ((authToken != null) && (authToken.length() > 0));
229 finishLogin(authToken);
312 protected void onPostExecute(final String authToken) {
314 // communicate the authToken (or null for an error)
    [all...]
Authenticator.java 39 * for syncing, we want to use an authtoken instead - so we're not continually
42 * we need to return the appropriate authToken for the specified account. If we
43 * already have an authToken stored in the account, we return that authToken. If
45 * to the sample service to fetch an authToken. If that fails (or we didn't have
92 // If the caller requested an authToken type we don't support, then
101 // the server for an appropriate AuthToken.
105 final String authToken = NetworkUtilities.authenticate(account.name, password);
106 if (!TextUtils.isEmpty(authToken)) {
110 result.putString(AccountManager.KEY_AUTHTOKEN, authToken);
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AccountManagerTest.java 134 String authToken = accountManager.peekAuthToken(ACCOUNT, authTokenType);
136 assertThat(authToken, equalTo("myToken"));
143 String authToken =
146 assertNull(authToken);
153 String authToken = accountManager.peekAuthToken(ACCOUNT, "other");
155 assertNull(authToken);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 67 public static final String PARAM_AUTH_TOKEN = "authtoken";
123 String authToken = null;
129 authToken = ireader.readLine().trim();
132 if ((authToken != null) && (authToken.length() > 0)) {
134 return authToken;
140 Log.e(TAG, "IOException when getting authtoken", e);
154 * @param authtoken The authtoken stored in the AccountManager for this
161 Account account, String authtoken, long serverSyncState, List<RawContact> dirtyContacts
    [all...]
  /system/security/keystore/
operation.cpp 124 *outToken = entry->second.authToken.get();
128 bool OperationMap::setOperationAuthToken(sp<IBinder> token, const hw_auth_token_t* authToken) {
133 entry->second.authToken.reset(new hw_auth_token_t);
134 *entry->second.authToken = *authToken;
operation.h 63 bool setOperationAuthToken(sp<IBinder> token, const hw_auth_token_t* authToken);
81 std::unique_ptr<hw_auth_token_t> authToken;
key_store_service.cpp 866 const hw_auth_token_t* authToken = NULL;
867 int32_t authResult = getAuthToken(characteristics.get(), 0, purpose, &authToken,
876 addAuthToParams(&opParams, authToken);
    [all...]
key_store_service.h 195 const hw_auth_token_t** authToken, bool failOnTokenMissing = true);
  /frameworks/base/core/java/android/accounts/
IAccountManager.aidl 51 void invalidateAuthToken(String accountType, String authToken);
53 void setAuthToken(in Account account, String authTokenType, String authToken);
AccountManager.java 193 public static final String KEY_AUTHTOKEN = "authtoken";
570 * Change whether or not an app (identified by its uid) is allowed to retrieve an authToken
    [all...]
  /frameworks/base/core/java/android/security/
IKeystoreService.aidl 75 int addAuthToken(in byte[] authToken);
  /system/core/fingerprintd/
FingerprintDaemonProxy.cpp 139 const hw_auth_token_t* authToken = reinterpret_cast<const hw_auth_token_t*>(token);
140 return mDevice->enroll(mDevice, authToken, groupId, timeout);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAccountManager.java 33 public static final String AUTH_TOKEN_VALUE = "authToken";
166 public void invalidateAuthToken(String accountType, String authToken) {}
  /frameworks/base/services/core/java/com/android/server/accounts/
AccountManagerService.java 136 * A system service that provides account, password, and authtoken management for all
202 private static final String AUTHTOKENS_AUTHTOKEN = "authtoken";
    [all...]
  /development/apps/Development/src/com/android/development/
AccountsTester.java 459 String authToken = result.getString(AccountManager.KEY_AUTHTOKEN);
460 mAccountManager.invalidateAuthToken(mAccount.type, authToken);
  /frameworks/base/keystore/java/android/security/
KeyStore.java 544 * @param authToken The packed bytes of a hw_auth_token_t to be provided to keymaster.
548 public int addAuthToken(byte[] authToken) {
550 return mBinder.addAuthToken(authToken);
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
  /prebuilts/tools/common/m2/repository/com/google/api-client/google-api-client/1.22.0/
google-api-client-1.22.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/25.1.2/
ddmlib-25.1.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/25.1.3/
ddmlib-25.1.3.jar 

Completed in 1397 milliseconds

1 2 3