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

1 2

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/accounts/
AuthUtils.java 60 * @see AccountManager#blockingGetAuthToken(Account, String, boolean)
62 public String blockingGetAuthToken(final Account account, final String authTokenType,
65 return mAccountManager.blockingGetAuthToken(account, authTokenType, notifyAuthFailure);
  /frameworks/base/test-mock/src/android/test/mock/
MockAccountManager.java 77 public String blockingGetAuthToken(Account account, String authTokenType,
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowAccountManager.java 137 public String blockingGetAuthToken(Account account, String authTokenType,
447 String authToken = blockingGetAuthToken(account, authTokenType, false);
470 String authToken = blockingGetAuthToken(account, authTokenType, false);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAccountManagerTest.java 262 assertThat(am.blockingGetAuthToken(account, "token_type_1", false)).isEqualTo("token1");
263 assertThat(am.blockingGetAuthToken(account, "token_type_2", false)).isEqualTo("token2");
266 am.blockingGetAuthToken(null, "token_type_1", false);
267 fail("blockingGetAuthToken() should throw an illegal argument exception if the account is null");
272 am.blockingGetAuthToken(account, null, false);
273 fail("blockingGetAuthToken() should throw an illegal argument exception if the auth token type is null");
279 assertThat(am.blockingGetAuthToken(account1, "token_type_1", false)).isNull();
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsActor.java 145 public String blockingGetAuthToken(Account account, String authTokenType,
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v16-3.1.1.jar 
shadows-core-v17-3.1.1.jar 
shadows-core-v18-3.1.1.jar 
shadows-core-v19-3.1.1.jar 
shadows-core-v21-3.1.1.jar 
shadows-core-v22-3.1.1.jar 
shadows-core-v23-3.1.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
framework-3.4.2.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
shadows-framework-3.5.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
shadows-framework-3.6.1.jar 
  /external/robolectric/v1/lib/main/
android.jar 

Completed in 163 milliseconds

1 2