Home
last modified time | relevance | path

Searched refs:getCalls (Results 1 – 10 of 10) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DProximitySensorManagerTest.java61 when(mCallsManager.getCalls()).thenReturn(new ArrayList<Call>(){{ in testTurnOnProximityWithCallsActive()
73 when(mCallsManager.getCalls()).thenReturn(new ArrayList<Call>()); in testTurnOnProximityWithNoCallsActive()
93 when(mCallsManager.getCalls()).thenReturn(new ArrayList<Call>(){{ in testCallRemovedFromCallsManagerCallsActive()
105 when(mCallsManager.getCalls()).thenReturn(new ArrayList<Call>()); in testCallRemovedFromCallsManagerNoCallsActive()
DBluetoothPhoneServiceTest.java244 when(mMockCallsManager.getCalls()).thenReturn(calls); in testListCurrentCallsOneCall()
266 when(mMockCallsManager.getCalls()).thenReturn(calls); in testConferenceInProgressCDMA()
313 when(mMockCallsManager.getCalls()).thenReturn(calls); in testListCurrentCallsCdmaHold()
354 when(mMockCallsManager.getCalls()).thenReturn(calls); in testListCurrentCallsCdmaConference()
388 when(mMockCallsManager.getCalls()).thenReturn(calls); in testWaitingCallClccResponse()
410 when(mMockCallsManager.getCalls()).thenReturn(calls); in testNewCallClccResponse()
425 when(mMockCallsManager.getCalls()).thenReturn(calls); in testRingingCallClccResponse()
445 when(mMockCallsManager.getCalls()).thenReturn(calls); in testCallClccCache()
479 when(mMockCallsManager.getCalls()).thenReturn(calls); in testAlertingCallClccResponse()
499 when(mMockCallsManager.getCalls()).thenReturn(calls); in testHoldingCallClccResponse()
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/
DProximitySensorManager.java41 if (mCallsManager.getCalls().isEmpty()) { in onCallRemoved()
53 if (mCallsManager.getCalls().isEmpty()) { in turnOn()
DInCallController.java602 if (mCallsManager.getCalls().isEmpty()) { in onCallRemoved()
612 if (mCallsManager.getCalls().isEmpty()) { in onCallRemoved()
927 List<Call> calls = orderCallsWithChildrenFirst(mCallsManager.getCalls()); in onConnected()
DBluetoothPhoneServiceImpl.java327 for (Call otherCall : mCallsManager.getCalls()) {
536 Collection<Call> mCalls = mCallsManager.getCalls(); in sendListOfCalls()
DCallsManager.java559 public Collection<Call> getCalls() { in getCalls() method in CallsManager
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
DReadWriteDraftMessageActionTest.java76 final ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); in testWriteDraft()
135 final ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); in testReadDraft()
200 final ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); in testReadDraftForNewConversation()
236 final ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); in testWriteAndReadDraft()
293 final ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); in testUpdateDraft()
DGetOrCreateConversationActionTest.java73 ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); in testGetOrCreateConversation()
97 calls = mService.getCalls(); in testGetOrCreateConversation()
DActionTestHelpers.java147 public ArrayList<StubActionServiceCallLog> getCalls() { in getCalls() method in ActionTestHelpers.StubActionService
/packages/apps/Messaging/tests/src/com/android/messaging/ui/contact/
DContactPickerFragmentTest.java193 assertTrue(mService.getCalls().get(0).action instanceof GetOrCreateConversationAction); in testPickInitialContact()
219 assertEquals(0, mService.getCalls().size()); in testPickMoreContacts()