Home
last modified time | relevance | path

Searched refs:accountManager (Results 1 – 5 of 5) sorted by relevance

/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DAccountManagerTest.java27 private AccountManager accountManager; field in AccountManagerTest
36 accountManager = AccountManager.get(activity); in setUp()
37 accountManager.invalidateAuthToken(null, null); in setUp()
46accountManager.getAuthTokenByFeatures(accountType, authTokenType, features, activity, null, null, … in testGetAuthTokenByFeatures_isCancelled()
56accountManager.getAuthTokenByFeatures(accountType, authTokenType, features, activity, null, null, … in testGetAuthTokenByFeatures_isDoneWithCancel()
66accountManager.getAuthTokenByFeatures(accountType, authTokenType, features, activity, null, null, … in testGetAuthTokenByFeatures_isDoneWithGetResult()
76 accountManager.invalidateAuthToken(accountType, null); in testInvalidateAuthToken()
82accountManager.getAuthTokenByFeatures(accountType, authTokenType, features, activity, null, null, … in testGetAuthTokenByFeatures_getResult()
93 accountManager.getAuthToken(ACCOUNT, authTokenType, null, activity, null, null); in testGetAuthToken_getResult()
104 assertTrue(ref == accountManager); in testAccountManagerIsSingleton()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
DAuthenticationHelperImpl.java73 private Object accountManager = null; field in AuthenticationHelperImpl
92 public AuthenticationHelperImpl(SipStackImpl sipStack, AccountManager accountManager, in AuthenticationHelperImpl() argument
94 this.accountManager = accountManager; in AuthenticationHelperImpl()
109 public AuthenticationHelperImpl(SipStackImpl sipStack, SecureAccountManager accountManager, in AuthenticationHelperImpl() argument
111 this.accountManager = accountManager; in AuthenticationHelperImpl()
231 if ( this.accountManager instanceof SecureAccountManager ) { in handleChallenge()
233 … ((SecureAccountManager)this.accountManager).getCredentialHash(challengedTransaction,realm); in handleChallenge()
241 …UserCredentials userCreds = ((AccountManager) this.accountManager).getCredentials(challengedTransa… in handleChallenge()
/external/nist-sip/java/gov/nist/javax/sip/
DSipStackExt.java66 public AuthenticationHelper getAuthenticationHelper(AccountManager accountManager, in getAuthenticationHelper() argument
81 public AuthenticationHelper getSecureAuthenticationHelper(SecureAccountManager accountManager, in getSecureAuthenticationHelper() argument
DSipStackImpl.java1374 AccountManager accountManager, HeaderFactory headerFactory) { in getAuthenticationHelper() argument
1375 return new AuthenticationHelperImpl(this, accountManager, headerFactory); in getAuthenticationHelper()
1386 SecureAccountManager accountManager, HeaderFactory headerFactory) { in getSecureAuthenticationHelper() argument
1387 return new AuthenticationHelperImpl(this, accountManager, headerFactory); in getSecureAuthenticationHelper()
/external/volley/src/main/java/com/android/volley/toolbox/
DAndroidAuthenticator.java64 AndroidAuthenticator(AccountManager accountManager, Account account, in AndroidAuthenticator() argument
66 mAccountManager = accountManager; in AndroidAuthenticator()