/packages/apps/Car/CompanionDeviceSupport/src/com/android/car/companiondevicesupport/feature/ |
D | LocalFeature.java | 99 public void sendMessageSecurely(@NonNull String deviceId, @NonNull byte[] message) { in sendMessageSecurely() method in LocalFeature 108 sendMessageSecurely(device, message); in sendMessageSecurely() 112 public void sendMessageSecurely(@NonNull ConnectedDevice device, byte[] message) { in sendMessageSecurely() method in LocalFeature 113 getConnectedDeviceManager().sendMessageSecurely(device, getFeatureId(), message); in sendMessageSecurely()
|
D | RemoteFeature.java | 111 public void sendMessageSecurely(@NonNull String deviceId, @NonNull byte[] message) { in sendMessageSecurely() method in RemoteFeature 120 sendMessageSecurely(device, message); in sendMessageSecurely() 124 public void sendMessageSecurely(@NonNull CompanionDevice device, @NonNull byte[] message) { in sendMessageSecurely() method in RemoteFeature 126 getConnectedDeviceManager().sendMessageSecurely(device, getFeatureId(), message); in sendMessageSecurely()
|
/packages/apps/Car/CompanionDeviceSupport/tests/unit/src/com/android/car/companiondevicesupport/api/external/ |
D | ConnectedDeviceManagerBinderTest.java | 140 mBinder.sendMessageSecurely(companionDevice, mRecipientId, message); in sendMessageSecurely_mirrorsConnectedDeviceManager() 141 verify(mMockConnectedDeviceManager).sendMessageSecurely( in sendMessageSecurely_mirrorsConnectedDeviceManager()
|
/packages/apps/Car/CompanionDeviceSupport/src/com/android/car/companiondevicesupport/api/external/ |
D | ConnectedDeviceManagerBinder.java | 192 public boolean sendMessageSecurely(CompanionDevice companionDevice, ParcelUuid recipientId, in sendMessageSecurely() method in ConnectedDeviceManagerBinder 195 mConnectedDeviceManager.sendMessageSecurely(companionDevice.toConnectedDevice(), in sendMessageSecurely()
|
D | IConnectedDeviceManager.aidl | 75 boolean sendMessageSecurely(in CompanionDevice companionDevice, in ParcelUuid recipientId, in sendMessageSecurely() method
|
/packages/apps/Car/CompanionDeviceSupport/src/com/android/car/companiondevicesupport/feature/trust/ |
D | TrustedDeviceManager.java | 195 mTrustedDeviceFeature.sendMessageSecurely(deviceId, createAcknowledgmentMessage()); in unlockUser() 231 mTrustedDeviceFeature.sendMessageSecurely(mPendingDevice, createHandleMessage(handle)); in onEscrowTokenActivated() 312 mTrustedDeviceFeature.sendMessageSecurely(deviceId, createStartEnrollmentMessage()); in initiateEnrollment()
|
/packages/apps/Car/CompanionDeviceSupport/src/com/android/car/companiondevicesupport/feature/howitzer/ |
D | ConnectionHowitzer.java | 59 sendMessageSecurely(device, message); in sendMessage()
|
/packages/apps/Car/libs/connected-device-lib/tests/unit/src/com/android/car/connecteddevice/ |
D | ConnectedDeviceManagerTest.java | 173 mConnectedDeviceManager.sendMessageSecurely(device, recipientId, message); in sendMessageSecurely_throwsIllegalStateExceptionIfNoSecureChannel() 183 mConnectedDeviceManager.sendMessageSecurely(device, recipientId, message); in sendMessageSecurely_sendsEncryptedMessage() 196 mConnectedDeviceManager.sendMessageSecurely(device, recipientId, message); in sendMessageSecurely_doesNotSendIfDeviceDisconnected()
|
/packages/apps/Car/CompanionDeviceSupport/src/com/android/car/companiondevicesupport/feature/notificationmsg/ |
D | NotificationMsgFeature.java | 118 sendMessageSecurely(deviceId, message); in sendData()
|
/packages/apps/Car/libs/connected-device-lib/src/com/android/car/connecteddevice/ |
D | ConnectedDeviceManager.java | 520 public void sendMessageSecurely(@NonNull ConnectedDevice device, @NonNull UUID recipientId, in sendMessageSecurely() method in ConnectedDeviceManager
|