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.java278 public static final String WRITE_VALUE = "CLIENT_TEST"; field in BleClientService
371 writeCharacteristic(CHARACTERISTIC_UUID, WRITE_VALUE); in onTestFinish()
430 writeDescriptor(DESCRIPTOR_UUID, WRITE_VALUE); in onTestFinish()
446 writeCharacteristic(CHARACTERISTIC_NO_WRITE_UUID, WRITE_VALUE); in onTestFinish()
452 writeDescriptor(DESCRIPTOR_NO_WRITE_UUID, WRITE_VALUE); in onTestFinish()
458 writeCharacteristic(CHARACTERISTIC_NEED_ENCRYPTED_WRITE_UUID, WRITE_VALUE); in onTestFinish()
464 … writeDescriptor(CHARACTERISTIC_RESULT_UUID, DESCRIPTOR_NEED_ENCRYPTED_WRITE_UUID, WRITE_VALUE); in onTestFinish()
1011 … if (Arrays.equals(BleClientService.WRITE_VALUE.getBytes(), characteristic.getValue())) {
1093 if (BleServerService.WRITE_VALUE.equals(value)) {
1127 if (Arrays.equals(WRITE_VALUE.getBytes(), descriptor.getValue())) {
[all …]
DBleServerService.java204 public static final String WRITE_VALUE = "SERVER_TEST"; field in BleServerService
354 getCharacteristic(CHARACTERISTIC_UUID).setValue(WRITE_VALUE.getBytes()); in resetValues()
355 getDescriptor().setValue(WRITE_VALUE.getBytes()); in resetValues()
706 characteristic.setValue(WRITE_VALUE.getBytes()); in createService()
709 descriptor.setValue(WRITE_VALUE.getBytes()); in createService()
918 characteristic.setValue(WRITE_VALUE.getBytes());
920 descriptor.setValue(WRITE_VALUE.getBytes());
1048 … if (Arrays.equals(BleClientService.WRITE_VALUE.getBytes(), characteristic.getValue())) {
1125 if (Arrays.equals(BleClientService.WRITE_VALUE.getBytes(), descriptor.getValue())) {
1132 if (Arrays.equals(BleClientService.WRITE_VALUE.getBytes(), descriptor.getValue())) {
DBleCocServerService.java156 public static final String WRITE_VALUE = "SERVER_TEST"; field in BleCocServerService
399 characteristic.setValue(WRITE_VALUE.getBytes()); in createService()
402 descriptor.setValue(WRITE_VALUE.getBytes()); in createService()
DBleCocClientService.java133 public static final String WRITE_VALUE = "CLIENT_TEST"; field in BleCocClientService