/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/telephony/ |
D | BluetoothInCallServiceTest.java | 272 when(activeCall.getHandle()).thenReturn(Uri.parse("tel:555-000")); in testListCurrentCallsOneCall() 336 when(silentRingingCall.getHandle()).thenReturn(Uri.parse("tel:555-000")); in testListCurrentCallsSilentRinging() 427 when(parentCall.getHandle()).thenReturn(Uri.parse("tel:555-0000")); in testListCurrentCallsCdmaHold() 429 when(foregroundCall.getHandle()).thenReturn(Uri.parse("tel:555-0001")); in testListCurrentCallsCdmaHold() 431 when(heldCall.getHandle()).thenReturn(Uri.parse("tel:555-0002")); in testListCurrentCallsCdmaHold() 494 when(parentCall.getHandle()).thenReturn(Uri.parse("tel:555-0000")); in testListCurrentCallsCdmaConference() 495 when(confCall1.getHandle()).thenReturn(Uri.parse("tel:555-0001")); in testListCurrentCallsCdmaConference() 496 when(confCall2.getHandle()).thenReturn(Uri.parse("tel:555-0002")); in testListCurrentCallsCdmaConference() 566 when(waitingCall.getHandle()).thenReturn(Uri.parse("tel:555-0000")); in testWaitingCallClccResponse() 630 when(activeCall.getHandle()).thenReturn(Uri.parse("tel:2135550000")); in testListCurrentCallsCallHandleChanged() [all …]
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/mapclient/ |
D | MceStateMachine.java | 184 public String getHandle() { in getHandle() method in MceStateMachine.MessageMetadata 864 if (!mMessages.containsKey(event.getHandle())) { in processNotification() 873 event.getHandle(), timestamp, false, MESSAGE_NOT_SEEN); in processNotification() 874 mMessages.put(event.getHandle(), metadata); in processNotification() 878 event.getHandle(), MasClient.CharsetType.UTF_8, false)); in processNotification() 890 notifySentMessageStatus(event.getHandle(), event.getType()); in processNotification() 893 mDatabase.markRead(event.getHandle()); in processNotification() 896 mDatabase.deleteMessage(event.getHandle()); in processNotification() 931 + msg.getHandle()); in processMessageListing() 937 + msg.getHandle() in processMessageListing() [all …]
|
/packages/apps/Dialer/java/com/android/dialer/telecom/ |
D | TelecomCallUtil.java | 42 Uri handle = call.getDetails().getHandle(); in isEmergencyCall() 58 Uri handle = getHandle(call); in getNumber() 67 public static Uri getHandle(@Nullable Call call) { in getHandle() method in TelecomCallUtil 68 return call == null ? null : call.getDetails().getHandle(); in getHandle()
|
/packages/modules/NeuralNetworks/runtime/test/fibonacci_extension/ |
D | FibonacciExtensionTest.cpp | 99 mModel.getHandle(), devices.data(), devices.size(), supported), in checkSupportedOperations() 112 ASSERT_EQ(ANeuralNetworksCompilation_createForDevices(mModel.getHandle(), mDevices.data(), in prepareForExecution() 251 ASSERT_EQ(ANeuralNetworksCompilation_createForDevices(mModel.getHandle(), mDevices.data(), in TEST_F() 262 ASSERT_EQ(ANeuralNetworksCompilation_createForDevices(mModel.getHandle(), mDevices.data(), in TEST_F() 299 ASSERT_EQ(ANeuralNetworksCompilation_createForDevices(mModel.getHandle(), mDevices.data(), in TEST_F() 318 ASSERT_EQ(ANeuralNetworksCompilation_createForDevices(mModel.getHandle(), mDevices.data(), in TEST_F() 337 ASSERT_EQ(ANeuralNetworksCompilation_createForDevices(mModel.getHandle(), mDevices.data(), in TEST_F()
|
/packages/services/Telecomm/src/com/android/server/telecom/callfiltering/ |
D | DirectToVoicemailFilter.java | 45 mCallerInfoLookupHelper.startLookup(mCall.getHandle(), in startFilterLookup() 49 if ((handle != null) && Objects.equals(mCall.getHandle(), handle) in startFilterLookup() 68 mCall.getHandle()); in startFilterLookup()
|
D | BlockCheckerFilter.java | 128 mCallerInfoLookupHelper.startLookup(mCall.getHandle(), in startFilterLookup() 172 final String number = mCall.getHandle() == null ? null : in getBlockStatus() 173 mCall.getHandle().getSchemeSpecificPart(); in getBlockStatus()
|
/packages/modules/NeuralNetworks/runtime/test/ |
D | TestNeuralNetworksWrapper.h | 236 ANeuralNetworksModel* getHandle() const { return mModel; } in getHandle() function 262 model->getHandle(), devices.empty() ? nullptr : devices.data(), devices.size(), in createForDevices() 268 int result = ANeuralNetworksCompilation_create(model->getHandle(), &mCompilation); in Compilation() 357 ANeuralNetworksCompilation* getHandle() const { return mCompilation; } in getHandle() function 368 Execution(const Compilation* compilation) : mCompilation(compilation->getHandle()) { in Execution() 369 int result = ANeuralNetworksExecution_create(compilation->getHandle(), &mExecution); in Execution() 468 [](const Event* e) { return e->getHandle(); }); in startComputeWithDependencies() 551 ANeuralNetworksExecution* getHandle() { return mExecution; }; in getHandle() function
|
D | TestMemoryDomain.cpp | 230 const auto* annCompilation = compilation.getHandle(); in allocateDeviceMemory() 299 ASSERT_NE(compilation.getHandle(), nullptr); in TEST_P() 335 ASSERT_NE(compilation.getHandle(), nullptr); in TEST_P() 421 ASSERT_NE(compilation.getHandle(), nullptr); in TEST_P() 455 ASSERT_NE(compilation.getHandle(), nullptr); in TEST_F()
|
D | TestTrivialModel.cpp | 188 ANeuralNetworksExecution* executionHandle = execution.getHandle(); in testAddTwoWithHardwareBufferInput() 257 ANeuralNetworksExecution* execution1_handle = execution1.getHandle(); in TEST_F() 268 ANeuralNetworksExecution* execution2_handle = execution2.getHandle(); in TEST_F()
|
D | TestFailingDriver.cpp | 148 reinterpret_cast<CompilationBuilder*>(compilation.getHandle()); in TEST_F() 198 reinterpret_cast<CompilationBuilder*>(compilation.getHandle()); in TEST_F()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | PhoneStateBroadcaster.java | 122 if (!call.isSelfManaged() && call.getHandle() != null) { in sendPhoneStateChangedBroadcast() 123 callHandle = call.getHandle().getSchemeSpecificPart(); in sendPhoneStateChangedBroadcast() 135 PhoneNumberUtils.stripSeparators(call.getHandle().getSchemeSpecificPart()); in sendOutgoingEmergencyCallEvent()
|
D | MissedCallNotifier.java | 54 mHandle = call.getHandle(); in CallInfo() 66 public Uri getHandle() { in getHandle() method in MissedCallNotifier.CallInfo
|
D | ConnectionServiceWrapper.java | 583 .setAddress(parcelableConference.getHandle(), in addConferenceCall() 1067 connection.getHandle(), in addExistingConnection() 1091 if (!Objects.equals(connection.getHandle(), in addExistingConnection() 1092 alreadyAddedConnection.getHandle())) { in addExistingConnection() 1093 alreadyAddedConnection.setHandle(connection.getHandle()); in addExistingConnection() 1097 alreadyAddedConnection.setHandle(connection.getHandle(), in addExistingConnection() 1629 Log.piiHandle(call.getHandle())); in createConference() 1633 .setAddress(call.getHandle()) in createConference() 1655 Log.piiHandle(call.getHandle()) + " via:" + in createConference() 1748 Log.piiHandle(call.getHandle()) + " via:" + in createConnection() [all …]
|
D | RespondViaSmsManager.java | 144 && call.getHandle() != null in onIncomingCallRejected() 148 rejectCallWithMessage(call.getContext(), call.getHandle().getSchemeSpecificPart(), in onIncomingCallRejected()
|
/packages/modules/NeuralNetworks/runtime/include/ |
D | NeuralNetworksWrapper.h | 337 mModel, index, model->getHandle())) != ANEURALNETWORKS_NO_ERROR) { 371 ANeuralNetworksModel* getHandle() const { return mModel; } function 442 ANeuralNetworksEvent* getHandle() const { return mEvent; } function 477 model->getHandle(), devices.empty() ? nullptr : devices.data(), 484 NNAPI_CALL(ANeuralNetworksCompilation_create(model->getHandle(), &mCompilation)); 574 ANeuralNetworksCompilation* getHandle() const { return mCompilation; } function 598 NNAPI_CALL(ANeuralNetworksExecution_create(compilation->getHandle(), &mExecution)); 686 [](const Event* e) { return e->getHandle(); });
|
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/mapclient/ |
D | RequestTest.java | 104 assertThat(newRequest.getHandle()).isEqualTo(HANDLE); in testRequestGetMessage() 109 assertThat(newRequest.getHandle()).isEqualTo(HANDLE); in testRequestGetMessage() 146 assertThat(newRequest.getHandle()).isEqualTo(HANDLE); in testRequestSetMessageStatus() 151 assertThat(newRequest.getHandle()).isEqualTo(HANDLE); in testRequestSetMessageStatus()
|
D | EventReportTest.java | 63 assertThat(report.getHandle()).isEqualTo(handle); in fromStream() 107 assertThat(report.getHandle()).isEqualTo(handle); in fromStreamWithDateTime()
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | MissedCallNotifierTest.java | 71 assertEquals(TEL_CALL_HANDLE, callInfo.getHandle()); in testCallInfoFactory() 87 assertNull(callInfo.getHandle()); in testCallInfoFactoryNullParam()
|
D | PhoneStateBroadcasterTest.java | 82 when(call.getHandle()).thenReturn(Uri.parse("tel:911")); in testNotifyOutgoingEmergencyCallWithNoTelephonyCalling() 115 when(call.getHandle()).thenReturn(Uri.parse("tel:911")); in testNotifyOutgoingEmergencyCallWithNoTelephonySubscription()
|
/packages/modules/IntentResolver/java/src/com/android/intentresolver/emptystate/ |
D | NoCrossProfileEmptyStateProvider.java | 60 if (source.getPrimary().getHandle().equals(target.getPrimary().getHandle())) { in hasCrossProfileIntents()
|
/packages/apps/Nfc/src/com/android/nfc/ |
D | DeviceHost.java | 70 int getHandle(); in getHandle() method 119 public int getHandle(); in getHandle() method
|
/packages/modules/NeuralNetworks/shim_and_sl/include/ |
D | SupportLibraryWrapper.h | 324 ANeuralNetworksModel* getHandle() const { return mModel; } in getHandle() function 362 model->getHandle(), devices.empty() ? nullptr : devices.data(), in createForDevices() 475 ANeuralNetworksCompilation* getHandle() const { return mCompilation; } in getHandle() function 489 : mNnApi(nnapi), mCompilation(compilation->getHandle()) { in Execution() 490 int result = mNnApi->getFL5()->ANeuralNetworksExecution_create(compilation->getHandle(), in Execution() 675 ANeuralNetworksExecution* getHandle() { return mExecution; }; in getHandle() function
|
/packages/services/Telephony/src/com/android/services/telephony/ |
D | ConferenceParticipantConnection.java | 83 address = ConferenceParticipant.getParticipantAddress(participant.getHandle(), in ConferenceParticipantConnection() 99 mUserEntity = participant.getHandle(); in ConferenceParticipantConnection()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/telephony/ |
D | BluetoothInCallService.java | 801 if (inferredCall.isCallNull() || inferredCall.getHandle() == null) { in sendListOfCalls() 814 if (bluetoothCall.getHandle() == null) { in sendListOfCalls() 824 bluetoothCall.getHandle().toString(), in sendListOfCalls() 825 inferredCall.getHandle().toString(), in sendListOfCalls() 845 addressUri = inferredCall.getHandle(); in sendListOfCalls() 981 addressUri = call.getHandle(); in sendClccForCall() 1176 && ringingCall.getHandle() != null in updateHeadsetWithCallState() 1178 ringingAddress = ringingCall.getHandle().getSchemeSpecificPart(); in updateHeadsetWithCallState() 1687 addressUri = call.getHandle(); in createTbsCall()
|
/packages/services/Telecomm/src/com/android/server/telecom/ui/ |
D | MissedCallNotifierImpl.java | 285 final Uri handleUri = callInfo.getHandle(); in sendNotificationThroughDefaultDialer() 399 Uri handleUri = callInfo.getHandle(); in showMissedCallNotification() 438 Log.i(this, "Adding missed call notification for %s.", Log.pii(callInfo.getHandle())); in showMissedCallNotification() 603 return callInfo.getHandle() != null && in canRespondViaSms() 604 PhoneAccount.SCHEME_TEL.equals(callInfo.getHandle().getScheme()); in canRespondViaSms()
|