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.java424 when(mFakePhoneAccountRegistrar.getAllPhoneAccounts(any(UserHandle.class))) in testGetAllPhoneAccounts()
427 assertEquals(2, mTSIBinder.getAllPhoneAccounts().size()); in testGetAllPhoneAccounts()
/packages/services/Telecomm/src/com/android/server/telecom/
DTelecomServiceImpl.java328 return getAllPhoneAccounts().size();
341 public List<PhoneAccount> getAllPhoneAccounts() {
357 return mPhoneAccountRegistrar.getAllPhoneAccounts(callingUserHandle);
DPhoneAccountRegistrar.java287 List<PhoneAccount> accounts = getAllPhoneAccounts(userHandle).stream() in getPhoneAccountByGroupId()
662 public List<PhoneAccount> getAllPhoneAccounts(UserHandle userHandle) { in getAllPhoneAccounts() method in PhoneAccountRegistrar
667 return getAllPhoneAccounts(mCurrentUserHandle); in getAllPhoneAccountsOfCurrentUser()