Searched refs:associationIds (Results 1 – 5 of 5) sorted by relevance
/aosp14/frameworks/base/services/companion/java/com/android/server/companion/transport/ |
H A D | CompanionTransportManager.java | 129 public void sendMessage(int message, byte[] data, int[] associationIds) { in sendMessage() argument 133 for (int i = 0; i < associationIds.length; i++) { in sendMessage() 134 if (mTransports.contains(associationIds[i])) { in sendMessage() 135 mTransports.get(associationIds[i]).requestForResponse(message, data); in sendMessage()
|
/aosp14/frameworks/base/services/companion/java/com/android/server/companion/datatransfer/contextsync/ |
H A D | CrossDeviceSyncController.java | 356 final Set<Integer> associationIds = new HashSet<>(); in syncToAllDevicesForUserId() local 359 associationIds.add(associationInfo.getId()); in syncToAllDevicesForUserId() 362 if (associationIds.isEmpty()) { in syncToAllDevicesForUserId() 369 associationIds.stream().mapToInt(Integer::intValue).toArray()); in syncToAllDevicesForUserId() 408 final Set<Integer> associationIds = new HashSet<>(); in syncMessageToAllDevicesForUserId() local 411 associationIds.add(associationInfo.getId()); in syncMessageToAllDevicesForUserId() 414 if (associationIds.isEmpty()) { in syncMessageToAllDevicesForUserId() 420 associationIds.stream().mapToInt(Integer::intValue).toArray()); in syncMessageToAllDevicesForUserId()
|
/aosp14/frameworks/base/core/java/android/companion/ |
H A D | ICompanionDeviceManager.aidl | 77 void sendMessage(int messageType, in byte[] data, in int[] associationIds); in sendMessage() argument
|
H A D | CompanionDeviceManager.java | 894 public void sendMessage(int messageType, byte[] data, int[] associationIds) { in sendMessage() argument 896 mService.sendMessage(messageType, data, associationIds); in sendMessage()
|
/aosp14/frameworks/base/services/companion/java/com/android/server/companion/ |
H A D | CompanionDeviceManagerService.java | 648 public void sendMessage(int messageType, byte[] data, int[] associationIds) { in sendMessage() argument 649 mTransportManager.sendMessage(messageType, data, associationIds); in sendMessage()
|