Home
last modified time | relevance | path

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

/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.java67 AccountManager accountManager, in AndroidAuthenticator() argument
71 mAccountManager = accountManager; in AndroidAuthenticator()