Home
last modified time | relevance | path

Searched refs:WRITE_VALUE (Results 1 – 6 of 6) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DBleEncryptedClientService.java94 public static final String WRITE_VALUE = "ENC_CLIENT_TEST"; field in BleEncryptedClientService
269 characteristic.setValue(WRITE_VALUE); in startEncryptedAction()
280 descriptor.setValue(WRITE_VALUE.getBytes()); in startEncryptedAction()
392 if (WRITE_VALUE.equals(value)) {
428 … if (Arrays.equals(BleEncryptedServerService.WRITE_VALUE.getBytes(), characteristic.getValue())) {
469 … if (Arrays.equals(BleEncryptedServerService.WRITE_VALUE.getBytes(), descriptor.getValue())) {
512 if (Arrays.equals(WRITE_VALUE.getBytes(), descriptor.getValue())) {
DBleEncryptedServerService.java93 public static final String WRITE_VALUE = "ENC_SERVER_TEST"; field in BleEncryptedServerService
185 characteristic.setValue(WRITE_VALUE.getBytes()); in resetValues()
187 … characteristic.getDescriptor(DESCRIPTOR_ENCRYPTED_READ_UUID).setValue(WRITE_VALUE.getBytes()); in resetValues()
349 … if (Arrays.equals(BleEncryptedClientService.WRITE_VALUE.getBytes(), characteristic.getValue())) {
427 … if (Arrays.equals(BleEncryptedClientService.WRITE_VALUE.getBytes(), descriptor.getValue())) {
DBleClientService.java285 public static final String WRITE_VALUE = "CLIENT_TEST"; field in BleClientService
388 writeCharacteristic(CHARACTERISTIC_UUID, WRITE_VALUE); in onTestFinish()
447 writeDescriptor(DESCRIPTOR_UUID, WRITE_VALUE); in onTestFinish()
463 writeCharacteristic(CHARACTERISTIC_NO_WRITE_UUID, WRITE_VALUE); in onTestFinish()
469 writeDescriptor(DESCRIPTOR_NO_WRITE_UUID, WRITE_VALUE); in onTestFinish()
475 writeCharacteristic(CHARACTERISTIC_NEED_ENCRYPTED_WRITE_UUID, WRITE_VALUE); in onTestFinish()
481 … writeDescriptor(CHARACTERISTIC_RESULT_UUID, DESCRIPTOR_NEED_ENCRYPTED_WRITE_UUID, WRITE_VALUE); in onTestFinish()
485 writeCharacteristic(SERVICE_CHANGED_CONTROL_CHARACTERISTIC_UUID, WRITE_VALUE); in onTestFinish()
1063 … if (Arrays.equals(BleClientService.WRITE_VALUE.getBytes(), characteristic.getValue())) {
1145 if (BleServerService.WRITE_VALUE.equals(value)) {
[all …]
DBleServerService.java214 public static final String WRITE_VALUE = "SERVER_TEST"; field in BleServerService
366 getCharacteristic(CHARACTERISTIC_UUID).setValue(WRITE_VALUE.getBytes()); in resetValues()
367 getDescriptor().setValue(WRITE_VALUE.getBytes()); in resetValues()
739 characteristic.setValue(WRITE_VALUE.getBytes()); in createService()
742 descriptor.setValue(WRITE_VALUE.getBytes()); in createService()
956 characteristic.setValue(WRITE_VALUE.getBytes());
958 descriptor.setValue(WRITE_VALUE.getBytes());
1099 … if (Arrays.equals(BleClientService.WRITE_VALUE.getBytes(), characteristic.getValue())) {
1176 if (Arrays.equals(BleClientService.WRITE_VALUE.getBytes(), descriptor.getValue())) {
1183 if (Arrays.equals(BleClientService.WRITE_VALUE.getBytes(), descriptor.getValue())) {
DBleCocServerService.java156 public static final String WRITE_VALUE = "SERVER_TEST"; field in BleCocServerService
398 characteristic.setValue(WRITE_VALUE.getBytes()); in createService()
401 descriptor.setValue(WRITE_VALUE.getBytes()); in createService()
DBleCocClientService.java133 public static final String WRITE_VALUE = "CLIENT_TEST"; field in BleCocClientService