/packages/modules/adb/client/ |
D | usb_windows.cpp | 91 int register_new_device(usb_handle* handle); 94 int recognized_device(usb_handle* handle); 114 int usb_write(usb_handle* handle, const void* data, int len); 117 int usb_read(usb_handle* handle, void* data, int len); 120 void usb_cleanup_handle(usb_handle* handle); 123 void usb_kick(usb_handle* handle); 126 int usb_close(usb_handle* handle); 153 int register_new_device(usb_handle* handle) { in register_new_device() argument 154 if (nullptr == handle) return 0; in register_new_device() 159 if (known_device_locked(handle->interface_name)) { in register_new_device() [all …]
|
D | usb_osx.cpp | 90 static void usb_kick_locked(usb_handle* handle); 103 static void AddDevice(std::unique_ptr<usb_handle> handle) { in AddDevice() argument 104 handle->mark = true; in AddDevice() 106 g_usb_handles.push_back(std::move(handle)); in AddDevice() 299 std::unique_ptr<usb_handle> handle = in AndroidInterfaceAdded() local 301 if (handle == nullptr) { in AndroidInterfaceAdded() 306 handle->devpath = devpath; in AndroidInterfaceAdded() 307 usb_handle* handle_p = handle.get(); in AndroidInterfaceAdded() 309 LOG(INFO) << "reported max packet size for " << serial << " is " << handle->max_packet_size; in AndroidInterfaceAdded() 310 AddDevice(std::move(handle)); in AndroidInterfaceAdded() [all …]
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | CallerInfoLookupHelper.java | 47 void onCallerInfoQueryComplete(Uri handle, @Nullable CallerInfo info); in onCallerInfoQueryComplete() argument 48 void onContactPhotoQueryComplete(Uri handle, CallerInfo info); in onContactPhotoQueryComplete() argument 86 public CompletableFuture<Pair<Uri, CallerInfo>> startLookup(final Uri handle) { in startLookup() argument 90 final String number = handle.getSchemeSpecificPart(); in startLookup() 94 callerInfoFuture.complete(new Pair<>(handle, null)); in startLookup() 101 public void onCallerInfoQueryComplete(Uri handle, CallerInfo info) { in startLookup() 103 Log.piiHandle(handle)); in startLookup() 105 callerInfoFuture.complete(new Pair<>(handle, info)); in startLookup() 109 public void onContactPhotoQueryComplete(Uri handle, CallerInfo info) { in startLookup() 115 startLookup(handle, listener); in startLookup() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
D | HandleMap.java | 39 public int handle = 0; field in HandleMap.Entry 48 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance) { in Entry() argument 51 this.handle = handle; in Entry() 57 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance, in Entry() argument 61 this.handle = handle; in Entry() 68 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle) { in Entry() argument 71 this.handle = handle; in Entry() 76 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle, int charHandle) { in Entry() argument 79 this.handle = handle; in Entry() 100 void addService(int serverIf, int handle, UUID uuid, int serviceType, int instance, in addService() argument [all …]
|
D | GattService.java | 388 private boolean permissionCheck(int connId, int handle) { in permissionCheck() argument 390 if (restrictedHandles == null || !restrictedHandles.contains(handle)) { in permissionCheck() 400 private boolean permissionCheck(ClientMap.App app, int connId, int handle) { in permissionCheck() argument 402 if (restrictedHandles == null || !restrictedHandles.contains(handle)) { in permissionCheck() 688 public void readCharacteristic(int clientIf, String address, int handle, int authReq, in readCharacteristic() argument 694 service.readCharacteristic(clientIf, address, handle, authReq, attributionSource); in readCharacteristic() 709 public void writeCharacteristic(int clientIf, String address, int handle, int writeType, in writeCharacteristic() argument 715 service.writeCharacteristic(clientIf, address, handle, writeType, authReq, value, in writeCharacteristic() 720 public void readDescriptor(int clientIf, String address, int handle, int authReq, in readDescriptor() argument 726 service.readDescriptor(clientIf, address, handle, authReq, attributionSource); in readDescriptor() [all …]
|
/packages/modules/Connectivity/tests/cts/net/jni/ |
D | NativeMultinetworkJni.cpp | 97 ns_msg handle; in extractIpAddressAnswers() local 98 if (ns_initparse((const uint8_t*) buf, bufLen, &handle) < 0) { in extractIpAddressAnswers() 101 const int ancount = ns_msg_count(handle, ns_s_an); in extractIpAddressAnswers() 109 if (ns_parserr(&handle, ns_s_an, i, &rr) < 0) { in extractIpAddressAnswers() 153 net_handle_t handle = (net_handle_t) nethandle; in Java_android_net_cts_MultinetworkApiTest_runResNqueryCheck() local 156 int fd = android_res_nquery(handle, kHostname, ns_c_in, ns_t_a, 0); in Java_android_net_cts_MultinetworkApiTest_runResNqueryCheck() 162 fd = android_res_nquery(handle, kHostname, ns_c_in, ns_t_aaaa, 0); in Java_android_net_cts_MultinetworkApiTest_runResNqueryCheck() 171 net_handle_t handle = (net_handle_t) nethandle; in Java_android_net_cts_MultinetworkApiTest_runResNsendCheck() local 182 int fd1 = android_res_nsend(handle, buf1, len1, 0); in Java_android_net_cts_MultinetworkApiTest_runResNsendCheck() 184 int fd2 = android_res_nsend(handle, buf2, len2, 0); in Java_android_net_cts_MultinetworkApiTest_runResNsendCheck() [all …]
|
/packages/apps/Dialer/java/com/android/dialer/notification/ |
D | VoicemailChannelUtils.java | 60 for (PhoneAccountHandle handle : getAllEligableAccounts(context)) { in getAllChannelIds() 61 result.add(getChannelIdForAccount(handle)); in getAllChannelIds() 75 for (PhoneAccountHandle handle : getAllEligableAccounts(context)) { in createAllChannels() 76 createVoicemailChannelForAccount(context, handle); in createAllChannels() 82 static String getChannelId(@NonNull Context context, @Nullable PhoneAccountHandle handle) { in getChannelId() argument 94 if (handle == null) { in getChannelId() 102 if (!isChannelAllowedForAccount(context, handle)) { in getChannelId() 110 String channelId = getChannelIdForAccount(handle); in getChannelId() 115 createVoicemailChannelForAccount(context, handle); in getChannelId() 125 private static String getChannelIdForAccount(@NonNull PhoneAccountHandle handle) { in getChannelIdForAccount() argument [all …]
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | NewOutgoingCallIntentBroadcasterTest.java | 125 Uri handle = Uri.parse("tel:6505551234"); in testSelfManagedCall() local 126 Intent selfManagedCallIntent = buildIntent(handle, Intent.ACTION_CALL, null); in testSelfManagedCall() 179 private void badCallActionHelper(Uri handle, int expectedCode) { in badCallActionHelper() argument 180 Intent intent = new Intent(Intent.ACTION_ALARM_CHANGED, handle); in badCallActionHelper() 192 Uri handle = Uri.parse("tel:6505551234"); in testAlreadyDisconnectedCall() local 194 Intent callIntent = buildIntent(handle, Intent.ACTION_CALL, null); in testAlreadyDisconnectedCall() 207 Uri handle = Uri.parse("tel:"); in testNoNumberSupplied() local 208 Intent intent = new Intent(Intent.ACTION_CALL, handle); in testNoNumberSupplied() 220 Uri handle = Uri.parse("tel:6505551911"); in testEmergencyCallWithNonDefaultDialer() local 222 .isPotentialEmergencyNumber(eq(handle.getSchemeSpecificPart())); in testEmergencyCallWithNonDefaultDialer() [all …]
|
/packages/modules/NeuralNetworks/common/ |
D | SharedMemoryAndroid.cpp | 53 auto handle = Memory::Fd{ in createSharedMemoryFromUniqueFd() 59 return std::make_shared<const Memory>(Memory{.handle = std::move(handle)}); in createSharedMemoryFromUniqueFd() 97 if (maybeMemory.handle()->numFds != 1) { in allocateSharedMemory() 99 << maybeMemory.handle()->numFds << " numFds, but expected 1"; in allocateSharedMemory() 101 if (maybeMemory.handle()->numInts != 0) { in allocateSharedMemory() 103 << maybeMemory.handle()->numInts << " numInts, but expected 0"; in allocateSharedMemory() 107 const int fd = maybeMemory.handle()->data[0]; in allocateSharedMemory() 109 auto handle = Memory::Ashmem{ in allocateSharedMemory() 113 return std::make_shared<const Memory>(Memory{.handle = std::move(handle)}); in allocateSharedMemory() 117 auto handle = NN_TRY(hidlHandleFromUniqueFd(NN_TRY(dupFd(memory.fd)))); in map() local [all …]
|
D | DynamicCLDeps.cpp | 27 void* loadFunction(void* handle, const char* name) { in loadFunction() argument 28 CHECK(handle != nullptr); in loadFunction() 29 void* fn = dlsym(handle, name); in loadFunction() 35 impl.name = reinterpret_cast<decltype(impl.name)>(loadFunction(handle, #symbol)); 43 void* handle = dlopen("libandroid.so", RTLD_LAZY | RTLD_LOCAL); in loadCompatibilityLayerMemoryHelper() local 44 if (handle != nullptr) { in loadCompatibilityLayerMemoryHelper() 48 handle = dlopen("libcutils.so", RTLD_LAZY | RTLD_LOCAL); in loadCompatibilityLayerMemoryHelper() 49 CHECK(handle != nullptr) << "Unable to open either libandroid.so or libcutils.so: " in loadCompatibilityLayerMemoryHelper()
|
/packages/modules/DnsResolver/ |
D | res_debug.cpp | 142 static void do_section(ns_msg* handle, ns_sect section) { in do_section() argument 152 if (ns_parserr(handle, section, rrnum, &rr)) { in do_section() 158 int opcode = ns_msg_getflag(*handle, ns_f_opcode); in do_section() 213 n = ns_sprintrr(handle, &rr, NULL, NULL, buf.get(), (uint32_t)buflen); in do_section() 242 ns_msg handle; in res_pquery() local 246 if (ns_initparse(msg, len, &handle) < 0) { in res_pquery() 250 opcode = ns_msg_getflag(handle, ns_f_opcode); in res_pquery() 251 rcode = ns_msg_getflag(handle, ns_f_rcode); in res_pquery() 252 id = ns_msg_id(handle); in res_pquery() 253 qdcount = ns_msg_count(handle, ns_s_qd); in res_pquery() [all …]
|
/packages/services/Car/service/jni/evs/ |
D | CarEvsService.cpp | 49 jboolean connectToHalServiceIfNecessary(JNIEnv* env, jobject thiz, jlong handle) { in connectToHalServiceIfNecessary() argument 50 EvsServiceContext* ctxt = reinterpret_cast<EvsServiceContext*>(handle); in connectToHalServiceIfNecessary() 75 void returnFrameBuffer(JNIEnv* /*env*/, jobject /*thiz*/, jlong handle, jint bufferId) { in returnFrameBuffer() argument 76 EvsServiceContext* ctxt = reinterpret_cast<EvsServiceContext*>(handle); in returnFrameBuffer() 88 jboolean openCamera(JNIEnv* env, jobject /*thiz*/, jlong handle, jstring cameraId) { in openCamera() argument 89 EvsServiceContext* ctxt = reinterpret_cast<EvsServiceContext*>(handle); in openCamera() 109 void closeCamera(JNIEnv* /*env*/, jobject /*thiz*/, jlong handle) { in closeCamera() argument 110 EvsServiceContext* ctxt = reinterpret_cast<EvsServiceContext*>(handle); in closeCamera() 121 jboolean startVideoStream(JNIEnv* /*env*/, jobject /*thiz*/, jlong handle) { in startVideoStream() argument 122 EvsServiceContext* ctxt = reinterpret_cast<EvsServiceContext*>(handle); in startVideoStream() [all …]
|
/packages/services/Telecomm/src/com/android/server/telecom/ui/ |
D | MissedCallNotifierImpl.java | 251 private Bundle exemptFromPowerSavingTemporarily(String dialerPackage, UserHandle handle) { in exemptFromPowerSavingTemporarily() argument 259 handle.getIdentifier(), MISSED_CALL_POWER_SAVE_REASON); in exemptFromPowerSavingTemporarily() 276 String handle = handleUri == null ? null : handleUri.getSchemeSpecificPart(); in sendNotificationThroughDefaultDialer() local 278 if (!TextUtils.isEmpty(handle) && !TextUtils.equals(handle, in sendNotificationThroughDefaultDialer() 387 String handle = callInfo.getHandleSchemeSpecificPart(); in showMissedCallNotification() local 391 Log.d(this, "Add actions with number %s.", Log.piiHandle(handle)); in showMissedCallNotification() 393 if (!TextUtils.isEmpty(handle) in showMissedCallNotification() 394 && !TextUtils.equals(handle, mContext.getString(R.string.handle_restricted))) { in showMissedCallNotification() 418 Log.d(this, "Suppress actions. handle: %s, missedCalls: %d.", Log.piiHandle(handle), in showMissedCallNotification() 463 String handle = callInfo.getHandleSchemeSpecificPart(); in getNameForMissedCallNotification() local [all …]
|
D | DisconnectedCallNotifier.java | 76 public final Uri handle; field in DisconnectedCallNotifier.CallInfo 83 public CallInfo(UserHandle userHandle, Uri handle, long endTimeMs, Bitmap callerInfoIcon, in CallInfo() argument 86 this.handle = handle; in CallInfo() 98 ", handle=" + handle + in toString() 208 String handle = call.handle != null ? call.handle.getSchemeSpecificPart() : null; in showDisconnectedNotification() local 210 if (!TextUtils.isEmpty(handle) in showDisconnectedNotification() 211 && !TextUtils.equals(handle, mContext.getString(R.string.handle_restricted)) in showDisconnectedNotification() 217 createCallBackPendingIntent(call.handle, call.userHandle)).build()); in showDisconnectedNotification() 224 createSendSmsFromNotificationPendingIntent(call.handle, in showDisconnectedNotification() 239 Log.i(this, "Adding missed call notification for %s.", Log.pii(call.handle)); in showDisconnectedNotification() [all …]
|
/packages/apps/Dialer/java/com/android/dialer/app/calllog/ |
D | VisualVoicemailNotifier.java | 103 PhoneAccountHandle handle = getAccountForCall(context, newCalls.get(0)); in showNotifications() local 104 groupSummary.setChannelId(NotificationChannelManager.getVoicemailChannelId(context, handle)); in showNotifications() 157 PhoneAccountHandle handle = getAccountForCall(context, voicemail); in createNotificationForVoicemail() local 168 .setSound(getVoicemailRingtoneUri(context, handle)) in createNotificationForVoicemail() 169 .setDefaults(getNotificationDefaultFlags(context, handle)); in createNotificationForVoicemail() 218 builder.setChannelId(NotificationChannelManager.getVoicemailChannelId(context, handle)); in createNotificationForVoicemail() 234 @NonNull Context context, @Nullable PhoneAccountHandle handle) { in getVoicemailRingtoneUri() argument 235 if (handle == null) { in getVoicemailRingtoneUri() 237 handle = getFallbackAccount(context); in getVoicemailRingtoneUri() 238 if (handle == null) { in getVoicemailRingtoneUri() [all …]
|
D | LegacyVoicemailNotifier.java | 57 @NonNull PhoneAccountHandle handle, in showNotification() argument 64 Assert.isNotNull(handle); in showNotification() 68 context.getSystemService(TelephonyManager.class).createForPhoneAccountHandle(handle); in showNotification() 78 handle, in showNotification() 85 context, getNotificationTag(context, handle), NOTIFICATION_ID, notification); in showNotification() 92 @NonNull PhoneAccountHandle handle, in createNotification() argument 113 contentText = getNotificationText(context, handle, voicemailNumber); in createNotification() 128 .setSound(pinnedTelephonyManager.getVoicemailRingtoneUri(handle)) in createNotification() 131 .setChannelId(NotificationChannelManager.getVoicemailChannelId(context, handle)) in createNotification() 134 context, handle)); in createNotification() [all …]
|
/packages/services/Telecomm/src/com/android/server/telecom/callredirection/ |
D | CallRedirectionProcessorHelper.java | 128 protected Uri formatNumberForRedirection(Uri handle) { in formatNumberForRedirection() argument 129 return removePostDialDigits(formatNumberToE164(handle)); in formatNumberForRedirection() 137 public String getPostDialDigits(Uri handle) { in getPostDialDigits() argument 138 if (handle == null) { in getPostDialDigits() 141 return PhoneNumberUtils.extractPostDialPortion(handle.getSchemeSpecificPart()); in getPostDialDigits() 144 protected Uri formatNumberToE164(Uri handle) { in formatNumberToE164() argument 145 String number = handle.getSchemeSpecificPart(); in formatNumberToE164() 156 return handle; in formatNumberToE164() 158 return Uri.fromParts(handle.getScheme(), number, null); in formatNumberToE164() 162 protected Uri removePostDialDigits(Uri handle) { in removePostDialDigits() argument [all …]
|
/packages/apps/Bluetooth/jni/ |
D | com_android_bluetooth_sdp.cpp | 276 int handle = -1; in sdpCreateMapMasRecordNative() local 277 int ret = sBluetoothSdpInterface->create_sdp_record(&record, &handle); in sdpCreateMapMasRecordNative() 281 ALOGD("SDP Create record success - handle: %d", handle); in sdpCreateMapMasRecordNative() 285 return handle; in sdpCreateMapMasRecordNative() 313 int handle = -1; in sdpCreateMapMnsRecordNative() local 314 int ret = sBluetoothSdpInterface->create_sdp_record(&record, &handle); in sdpCreateMapMnsRecordNative() 318 ALOGD("SDP Create record success - handle: %d", handle); in sdpCreateMapMnsRecordNative() 322 return handle; in sdpCreateMapMnsRecordNative() 344 int handle = -1; in sdpCreatePbapPceRecordNative() local 345 int ret = sBluetoothSdpInterface->create_sdp_record(&record, &handle); in sdpCreatePbapPceRecordNative() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapContentObserver.java | 595 public long handle; field in BluetoothMapContentObserver.Event 626 Event(String eventType, long handle, String folder, String oldFolder, TYPE msgType) { in Event() argument 628 this.handle = handle; in Event() 642 Event(String eventType, long handle, String folder, TYPE msgType) { in Event() argument 644 this.handle = handle; in Event() 650 Event(String eventType, long handle, String folder, TYPE msgType, String datetime, in Event() argument 653 this.handle = handle; in Event() 667 Event(String eventType, long handle, String folder, TYPE msgType, String datetime, in Event() argument 671 this.handle = handle; in Event() 742 BluetoothMapUtils.getMapHandle(handle, msgType)); in encode() [all …]
|
/packages/apps/Settings/src/com/android/settings/network/telephony/ |
D | DefaultSubscriptionController.java | 121 final PhoneAccountHandle handle = getDefaultCallingAccountHandle(); in getSummary() local 122 if ((handle != null) && (!isCallingAccountBindToSubscription(handle))) { in getSummary() 124 return getLabelFromCallingAccount(handle); in getSummary() 217 for (PhoneAccountHandle handle : accountHandles) { in getDefaultCallingAccountHandle() 218 if (currentSelectPhoneAccount.equals(handle)) { in getDefaultCallingAccountHandle() 234 PhoneAccount getPhoneAccount(PhoneAccountHandle handle) { in getPhoneAccount() argument 235 return getTelecomManager().getPhoneAccount(handle); in getPhoneAccount() 243 public boolean isCallingAccountBindToSubscription(PhoneAccountHandle handle) { in isCallingAccountBindToSubscription() argument 244 final PhoneAccount account = getPhoneAccount(handle); in isCallingAccountBindToSubscription() 257 public CharSequence getLabelFromCallingAccount(PhoneAccountHandle handle) { in getLabelFromCallingAccount() argument [all …]
|
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/ |
D | CallNotificationReceiver.java | 84 public static void sendIncomingCallIntent(Context context, Uri handle, int videoState) { in sendIncomingCallIntent() argument 93 if (handle != null) { in sendIncomingCallIntent() 94 extras.putParcelable(TestConnectionService.EXTRA_HANDLE, handle); in sendIncomingCallIntent() 100 public static void sendIncomingRttCallIntent(Context context, Uri handle, int videoState) { in sendIncomingRttCallIntent() argument 109 if (handle != null) { in sendIncomingRttCallIntent() 110 extras.putParcelable(TestConnectionService.EXTRA_HANDLE, handle); in sendIncomingRttCallIntent() 117 public static void addNewUnknownCall(Context context, Uri handle, Bundle extras) { in addNewUnknownCall() argument 118 Log.i(TAG, "Adding new unknown call with handle " + handle); in addNewUnknownCall() 127 if (handle != null) { in addNewUnknownCall() 128 extras.putParcelable(TelecomManager.EXTRA_UNKNOWN_CALL_HANDLE, handle); in addNewUnknownCall() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/ |
D | AvrcpCoverArtManager.java | 101 public String getHandleUuid(String handle) { in getHandleUuid() argument 102 if (!isValidImageHandle(handle)) return null; in getHandleUuid() 104 String existingUuid = mUuids.putIfAbsent(handle, newUuid); in getHandleUuid() 106 mHandles.put(newUuid, handle); in getHandleUuid() 132 public static boolean isValidImageHandle(String handle) { in isValidImageHandle() argument 133 if (handle == null || handle.length() != 7) return false; in isValidImageHandle() 134 for (char c : handle.toCharArray()) { in isValidImageHandle() 244 public String getUuidForHandle(BluetoothDevice device, String handle) { in getUuidForHandle() argument 246 if (session == null || !isValidImageHandle(handle)) return null; in getUuidForHandle() 247 return session.getHandleUuid(handle); in getUuidForHandle() [all …]
|
/packages/services/Car/tools/emulator/ |
D | driving_info_generator.py | 114 … listener.handle(c.VEHICLEPROPERTY_PERF_VEHICLE_SPEED, 0, self.speedInMps, "PERF_VEHICLE_SPEED") 115 listener.handle(c.VEHICLEPROPERTY_ENGINE_RPM, 0, self.rpm, "ENGINE_RPM") 116 listener.handle(c.VEHICLEPROPERTY_PERF_ODOMETER, 0, self.odometerInKm, "PERF_ODOMETER") 117 listener.handle(c.VEHICLEPROPERTY_CURRENT_GEAR, 0, self.currentGear, "CURRENT_GEAR") 118 listener.handle(c.VEHICLEPROPERTY_OBD2_LIVE_FRAME, 0, 182 listener.handle(c.VEHICLEPROPERTY_GEAR_SELECTION, 0, c.VEHICLEGEAR_GEAR_REVERSE, 184 listener.handle(c.VEHICLEPROPERTY_CURRENT_GEAR, 0, c.VEHICLEGEAR_GEAR_REVERSE, 199 listener.handle(c.VEHICLEPROPERTY_GEAR_SELECTION, 0, c.VEHICLEGEAR_GEAR_PARK, 201 listener.handle(c.VEHICLEPROPERTY_CURRENT_GEAR, 0, c.VEHICLEGEAR_GEAR_PARK, 223 listener.handle(c.VEHICLEPROPERTY_GEAR_SELECTION, 0, c.VEHICLEGEAR_GEAR_DRIVE,
|
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/ |
D | MapClientContent.java | 77 void onMessageStatusChanged(String handle, int status); in onMessageStatusChanged() argument 193 void storeMessage(Bmessage message, String handle, Long timestamp) { in storeMessage() argument 196 storeMms(message, handle, timestamp); in storeMessage() 200 storeSms(message, handle, timestamp); in storeMessage() 207 private void storeSms(Bmessage message, String handle, Long timestamp) { in storeSms() argument 238 mHandleToUriMap.put(handle, results); in storeSms() 239 mUriToHandleMap.put(results, new MessageStatus(handle, readStatus)); in storeSms() 247 void deleteMessage(String handle) { in deleteMessage() argument 248 logD("deleting handle" + handle); in deleteMessage() 249 Uri messageToChange = mHandleToUriMap.get(handle); in deleteMessage() [all …]
|
/packages/services/Telephony/src/com/android/services/telephony/ |
D | TelecomAccountRegistry.java | 1191 boolean isVideoPauseSupported(PhoneAccountHandle handle) { in isVideoPauseSupported() argument 1194 if (entry.getPhoneAccountHandle().equals(handle)) { in isVideoPauseSupported() 1209 public boolean isMergeCallSupported(PhoneAccountHandle handle) { in isMergeCallSupported() argument 1212 if (entry.getPhoneAccountHandle().equals(handle)) { in isMergeCallSupported() 1227 public boolean isVideoConferencingSupported(PhoneAccountHandle handle) { in isVideoConferencingSupported() argument 1230 if (entry.getPhoneAccountHandle().equals(handle)) { in isVideoConferencingSupported() 1245 public boolean isMergeOfWifiCallsAllowedWhenVoWifiOff(final PhoneAccountHandle handle) { in isMergeOfWifiCallsAllowedWhenVoWifiOff() argument 1248 entry -> entry.getPhoneAccountHandle().equals(handle)).findFirst(); in isMergeOfWifiCallsAllowedWhenVoWifiOff() 1265 public boolean isMergeImsCallSupported(PhoneAccountHandle handle) { in isMergeImsCallSupported() argument 1268 if (entry.getPhoneAccountHandle().equals(handle)) { in isMergeImsCallSupported() [all …]
|