Searched refs:associationIds (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/services/companion/java/com/android/server/companion/transport/ |
D | CompanionTransportManager.java | 122 public void sendMessage(int message, byte[] data, int[] associationIds) { in sendMessage() argument 126 for (int i = 0; i < associationIds.length; i++) { in sendMessage() 127 if (mTransports.contains(associationIds[i])) { in sendMessage() 128 mTransports.get(associationIds[i]).sendMessage(message, data); in sendMessage()
|
/frameworks/base/services/companion/java/com/android/server/companion/datatransfer/contextsync/ |
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()
|
/frameworks/base/core/java/android/companion/ |
D | ICompanionDeviceManager.aidl | 92 void sendMessage(int messageType, in byte[] data, in int[] associationIds); in sendMessage() argument
|
D | CompanionDeviceManager.java | 1058 public void sendMessage(int messageType, @NonNull byte[] data, @NonNull int[] associationIds) { in sendMessage() argument 1065 mService.sendMessage(messageType, data, associationIds); in sendMessage()
|
/frameworks/base/services/companion/java/com/android/server/companion/ |
D | CompanionDeviceManagerService.java | 397 public void sendMessage(int messageType, byte[] data, int[] associationIds) { in sendMessage() argument 400 mTransportManager.sendMessage(messageType, data, associationIds); in sendMessage()
|