Home
last modified time | relevance | path

Searched refs:SecureBleChannel (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Car/libs/connected-device-lib/tests/unit/src/com/android/car/connecteddevice/ble/
DSecureBleChannelTest.java57 private SecureBleChannel mChannel;
62 @Mock private SecureBleChannel.ShowVerificationCodeListener mShowVerificationCodeListenerMock;
98 assertThat(confirmMessage).isEqualTo(SecureBleChannel.CONFIRMATION_SIGNAL); in testEncryptionHandshake_Association()
117 eq(SecureBleChannel.CHANNEL_ERROR_INVALID_HANDSHAKE) in testEncryptionHandshake_Association_wrongInitHandshakeMessage()
137 eq(SecureBleChannel.CHANNEL_ERROR_INVALID_HANDSHAKE) in testEncryptionHandshake_Association_wrongRespondToContinueMessage()
142 mChannel = new SecureBleChannel( in setUpSecureBleChannel_Association()
191 class ChannelCallback implements SecureBleChannel.Callback {
DCarBlePeripheralManagerTest.java161 SecureBleChannel channel = getChannelForAssociation(callback); in testShowVerificationCode()
171 SecureBleChannel channel = getChannelForAssociation(callback); in testAssociationSuccess()
172 SecureBleChannel.Callback channelCallback = channel.getCallback(); in testAssociationSuccess()
190 SecureBleChannel channel = getChannelForAssociation(callback); in testAssociationFailure_channelError()
191 SecureBleChannel.Callback channelCallback = channel.getCallback(); in testAssociationFailure_channelError()
221 private SecureBleChannel getChannelForAssociation(AssociationCallback callback) { in getChannelForAssociation()
/packages/apps/Car/libs/connected-device-lib/src/com/android/car/connecteddevice/ble/
DCarBlePeripheralManager.java302 SecureBleChannel secureChannel = getConnectedDevice().mSecureChannel; in notifyOutOfBandAccepted()
314 SecureBleChannel getConnectedDeviceChannel() { in getConnectedDeviceChannel()
379 SecureBleChannel secureChannel = new SecureBleChannel(secureStream, mStorage, isReconnect, in addConnectedDevice()
492 private final SecureBleChannel.Callback mSecureChannelCallback =
493 new SecureBleChannel.Callback() {
DSecureBleChannel.java48 class SecureBleChannel { class
102 SecureBleChannel(@NonNull BleDeviceMessageStream stream, in SecureBleChannel() method in SecureBleChannel
107 SecureBleChannel(@NonNull BleDeviceMessageStream stream, in SecureBleChannel() method in SecureBleChannel
442 void onEstablishSecureChannelFailure(@SecureBleChannel.ChannelError int error); in onEstablishSecureChannelFailure()
DCarBleManager.java203 SecureBleChannel mSecureChannel;