/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | BluetoothPhoneServiceTest.java | 239 ArrayList<Call> calls = new ArrayList<>(); in testListCurrentCallsOneCall() local 242 calls.add(activeCall); in testListCurrentCallsOneCall() 245 when(mMockCallsManager.getCalls()).thenReturn(calls); in testListCurrentCallsOneCall() 260 ArrayList<Call> calls = new ArrayList<>(); in testConferenceInProgressCDMA() local 264 calls.add(parentCall); in testConferenceInProgressCDMA() 265 calls.add(confCall1); in testConferenceInProgressCDMA() 266 calls.add(confCall2); in testConferenceInProgressCDMA() 267 when(mMockCallsManager.getCalls()).thenReturn(calls); in testConferenceInProgressCDMA() 307 ArrayList<Call> calls = new ArrayList<>(); in testListCurrentCallsCdmaHold() local 311 calls.add(parentCall); in testListCurrentCallsCdmaHold() [all …]
|
D | TODO | 12 Missed calls
|
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/ |
D | ReadWriteDraftMessageActionTest.java | 76 final ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); in testWriteDraft() local 83 assertEquals("Failed to start service once for action", calls.size(), 1); in testWriteDraft() 85 calls.get(0).action instanceof WriteDraftMessageAction); in testWriteDraft() 87 final Action save = calls.get(0).action; in testWriteDraft() 135 final ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); in testReadDraft() local 146 assertEquals("Unexpected number of calls to service", 1, calls.size()); in testReadDraft() 148 calls.get(0).action instanceof ReadDraftDataAction); in testReadDraft() 150 final Action read = calls.get(0).action; in testReadDraft() 200 final ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); in testReadDraftForNewConversation() local 205 assertEquals("Unexpected number of calls to service", 1, calls.size()); in testReadDraftForNewConversation() [all …]
|
D | GetOrCreateConversationActionTest.java | 73 ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); in testGetOrCreateConversation() local 79 assertEquals("Failed to start service once for action", calls.size(), 1); in testGetOrCreateConversation() 80 assertTrue("Action not GetOrCreateConversationAction", calls.get(0).action instanceof in testGetOrCreateConversation() 84 calls.get(0).action; in testGetOrCreateConversation() 97 calls = mService.getCalls(); in testGetOrCreateConversation() 98 assertEquals("Failed to start service for second action", calls.size(), 2); in testGetOrCreateConversation() 99 assertTrue("Action not GetOrCreateConversationAction", calls.get(1).action instanceof in testGetOrCreateConversation() 101 action = (GetOrCreateConversationAction)calls.get(1).action; in testGetOrCreateConversation()
|
/packages/providers/CallLogProvider/tests/src/com/android/calllogbackup/ |
D | CallLogBackupAgentTest.java | 162 List<Call> calls = new LinkedList<>(); in testRunBackup_NoCalls() local 164 mCallLogBackupAgent.runBackup(state, mBackupDataOutput, calls); in testRunBackup_NoCalls() 173 List<Call> calls = new LinkedList<>(); in testRunBackup_OneNewCall() local 174 calls.add(makeCall(101, 0L, 0L, "555-5555")); in testRunBackup_OneNewCall() 175 mCallLogBackupAgent.runBackup(state, mBackupDataOutput, calls); in testRunBackup_OneNewCall() 185 List<Call> calls = new LinkedList<>(); in testRunBackup_MultipleCall() local 186 calls.add(makeCall(101, 0L, 0L, "555-1234")); in testRunBackup_MultipleCall() 187 calls.add(makeCall(102, 0L, 0L, "555-5555")); in testRunBackup_MultipleCall() 189 mCallLogBackupAgent.runBackup(state, mBackupDataOutput, calls); in testRunBackup_MultipleCall() 207 List<Call> calls = new LinkedList<>(); in testRunBackup_PartialMultipleCall() local [all …]
|
/packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/ |
D | UiCallManager.java | 469 List<UiCall> calls = getCalls(); in getPrimaryCall() local 470 if (calls.isEmpty()) { in getPrimaryCall() 474 Collections.sort(calls, getCallComparator()); in getPrimaryCall() 475 UiCall uiCall = calls.get(0); in getPrimaryCall() 486 List<UiCall> calls = getCalls(); in getSecondaryCall() local 487 if (calls.size() < 2) { in getSecondaryCall() 491 Collections.sort(calls, getCallComparator()); in getSecondaryCall() 492 UiCall uiCall = calls.get(1); in getSecondaryCall()
|
/packages/apps/Dialer/java/com/android/incallui/ |
D | ConferenceManagerPresenter.java | 115 ArrayList<DialerCall> calls = new ArrayList<>(currentCall.getChildCallIds().size()); in update() local 117 calls.add(callList.getCallById(callerId)); in update() 120 Log.d(this, "Number of calls is " + String.valueOf(calls.size())); in update() 128 getUi().update(calls, canSeparate); in update()
|
D | ConferenceManagerFragment.java | 74 final CallList calls = CallList.getInstance(); in onResume() local 75 getPresenter().init(calls); in onResume()
|
D | InCallPresenter.java | 1121 final CallList calls = mCallList; in handleCallKey() local 1122 final DialerCall incomingCall = calls.getIncomingCall(); in handleCallKey() 1132 final DialerCall activeCall = calls.getActiveCall(); in handleCallKey() 1156 final DialerCall heldCall = calls.getBackgroundCall(); in handleCallKey()
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
D | sax.md | 98 …d, user needs to implement a handler, which consumes the events (function calls) from `Reader`. Th… 122 …unters a JSON number, it chooses a suitable C++ type mapping. And then it calls *one* function out… 126 …calls `StartObject()`. An object in JSON is a set of name-value pairs. If the object contains memb… 128 …mpler. At the beginning of an array, the `Reader` calls `BeginArary()`. If there is elements, it c… 151 …e target encoding means the encoding of the `str` parameter in `String()` calls. For example, to p… 174 If an error occurs during parsing, it will return `false`. User can also calls `bool HasParseEror()…
|
D | tutorial.md | 263 Value b(true); // calls Value(bool) 264 Value i(-123); // calls Value(int) 265 Value u(123u); // calls Value(unsigned) 266 Value d(1.5); // calls Value(double) 367 …out the length parameter. And it assumes the input is null-terminated and calls a `strlen()`-like …
|
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/connserv/ |
D | HfpClientDeviceBlock.java | 87 List<BluetoothHeadsetClientCall> calls = in HfpClientDeviceBlock() local 90 Log.d(TAG, "Got calls " + calls); in HfpClientDeviceBlock() 92 if (calls == null) { in HfpClientDeviceBlock() 100 for (BluetoothHeadsetClientCall call : calls) { in HfpClientDeviceBlock()
|
/packages/providers/CallLogProvider/src/com/android/calllogbackup/ |
D | CallLogBackupAgent.java | 194 void runBackup(CallLogBackupState state, BackupDataOutput data, Iterable<Call> calls) { in runBackup() argument 200 for (Call call : calls) { in runBackup() 229 List<Call> calls = new LinkedList<>(); in getAllCallLogEntries() local 242 calls.add(call); in getAllCallLogEntries() 250 return calls; in getAllCallLogEntries()
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/diagram/ |
D | architecture.dot | 46 Reader -> Handler [label="calls"] 47 Value -> Handler [label="calls"]
|
/packages/apps/Dialer/java/com/android/dialer/logging/ |
D | dialer_impression.proto | 82 // Displays the dialog for first time spam calls with actions "Not spam", "Block", and 86 // Displays the dialog for the first time unknown calls with actions "Add contact", 150 // User was not able to or did not participate in the call e.g missed calls, rejected calls
|
D | screen_event.proto | 53 // management of individual calls within the conference.
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | InCallController.java | 1290 List<Call> calls = orderCallsWithChildrenFirst(mCallsManager.getCalls()); in onConnected() local 1292 "calls", calls.size(), info.getComponentName()); in onConnected() 1294 for (Call call : calls) { in onConnected() 1460 private List<Call> orderCallsWithChildrenFirst(Collection<Call> calls) { in orderCallsWithChildrenFirst() argument 1463 for (Call call : calls) { in orderCallsWithChildrenFirst()
|
D | Analytics.java | 561 List<ParcelableCallAnalytics> calls = new LinkedList<>(); in dumpToParcelableAnalytics() local 564 calls.addAll(sCallIdToInfo.values().stream() in dumpToParcelableAnalytics() 571 return new TelecomAnalytics(sessionTimings, calls); in dumpToParcelableAnalytics()
|
D | README | 1 Code to manage and handle phone calls etc, approximately migrated from
|
D | CallAudioManager.java | 748 private void dumpCallsInCollection(IndentingPrintWriter pw, Collection<Call> calls) { in dumpCallsInCollection() argument 749 for (Call call : calls) { in dumpCallsInCollection()
|
/packages/providers/ContactsProvider/tests/assets/test1/ |
D | legacy_contacts.sql | 12 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER… table 13 INSERT INTO calls VALUES(1,18004664411,1249177360040,10,2,1,'Jane Doe',1,NULL);
|
/packages/experimental/RpcPerformance/ |
D | README | 5 no-op Binder calls and certain file I/O operations).
|
/packages/apps/Camera2/ |
D | proguard.flags | 33 # Disable the warnings of using dynamic method calls in EffectsRecorder
|
/packages/apps/Gallery2/ |
D | proguard.flags | 40 # Disable the warnings of using dynamic method calls in EffectsRecorder
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | ContactsDatabaseHelperUpgradeTest.java | 147 TableStructure calls = new TableStructure(mDb, "calls"); in upgradeTo1109() local 148 calls.assertHasColumn(Calls.LAST_MODIFIED, INTEGER, false, "0"); in upgradeTo1109()
|