Home
last modified time | relevance | path

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

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DPhoneAccountRegistrarTest.java646 List<PhoneAccount> accounts = mRegistrar.getAllPhoneAccounts(Process.myUserHandle()); in testSortSimFirst()
685 List<PhoneAccount> accounts = mRegistrar.getAllPhoneAccounts(Process.myUserHandle()); in testSortBySortOrder()
723 List<PhoneAccount> accounts = mRegistrar.getAllPhoneAccounts(Process.myUserHandle()); in testSortByLabel()
796 List<PhoneAccount> accounts = mRegistrar.getAllPhoneAccounts(Process.myUserHandle()); in testSortAll()
DTelecomServiceImplTest.java415 when(mFakePhoneAccountRegistrar.getAllPhoneAccounts(any(UserHandle.class))) in testGetAllPhoneAccounts()
418 assertEquals(2, mTSIBinder.getAllPhoneAccounts().size()); in testGetAllPhoneAccounts()
/packages/services/Telecomm/src/com/android/server/telecom/
DTelecomServiceImpl.java322 return getAllPhoneAccounts().size();
335 public List<PhoneAccount> getAllPhoneAccounts() {
351 return mPhoneAccountRegistrar.getAllPhoneAccounts(callingUserHandle);
DPhoneAccountRegistrar.java293 List<PhoneAccount> accounts = getAllPhoneAccounts(userHandle).stream() in getPhoneAccountByGroupId()
631 public List<PhoneAccount> getAllPhoneAccounts(UserHandle userHandle) { in getAllPhoneAccounts() method in PhoneAccountRegistrar
636 return getAllPhoneAccounts(mCurrentUserHandle); in getAllPhoneAccountsOfCurrentUser()