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.java710 List<PhoneAccount> accounts = mRegistrar.getAllPhoneAccounts(Process.myUserHandle()); in testSortSimFirst()
749 List<PhoneAccount> accounts = mRegistrar.getAllPhoneAccounts(Process.myUserHandle()); in testSortBySortOrder()
787 List<PhoneAccount> accounts = mRegistrar.getAllPhoneAccounts(Process.myUserHandle()); in testSortByLabel()
860 List<PhoneAccount> accounts = mRegistrar.getAllPhoneAccounts(Process.myUserHandle()); in testSortAll()
DTelecomServiceImplTest.java476 when(mFakePhoneAccountRegistrar.getAllPhoneAccounts(any(UserHandle.class))) in testGetAllPhoneAccounts()
479 assertEquals(2, mTSIBinder.getAllPhoneAccounts().size()); in testGetAllPhoneAccounts()
/packages/services/Telecomm/src/com/android/server/telecom/
DTelecomServiceImpl.java339 return getAllPhoneAccounts().size();
352 public List<PhoneAccount> getAllPhoneAccounts() {
368 return mPhoneAccountRegistrar.getAllPhoneAccounts(callingUserHandle);
DPhoneAccountRegistrar.java286 List<PhoneAccount> accounts = getAllPhoneAccounts(userHandle).stream() in getPhoneAccountByGroupId()
660 public List<PhoneAccount> getAllPhoneAccounts(UserHandle userHandle) { in getAllPhoneAccounts() method in PhoneAccountRegistrar
665 return getAllPhoneAccounts(mCurrentUserHandle); in getAllPhoneAccountsOfCurrentUser()