Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DBleEncryptedServerBaseActivity.java60 startService(new Intent(this, BleEncryptedServerService.class)); in onCreate()
68 filter.addAction(BleEncryptedServerService.INTENT_BLUETOOTH_DISABLED); in onResume()
69 filter.addAction(BleEncryptedServerService.INTENT_WAIT_WRITE_ENCRYPTED_CHARACTERISTIC); in onResume()
70 filter.addAction(BleEncryptedServerService.INTENT_WAIT_READ_ENCRYPTED_CHARACTERISTIC); in onResume()
71 filter.addAction(BleEncryptedServerService.INTENT_WAIT_WRITE_ENCRYPTED_DESCRIPTOR); in onResume()
72 filter.addAction(BleEncryptedServerService.INTENT_WAIT_READ_ENCRYPTED_DESCRIPTOR); in onResume()
104 case BleEncryptedServerService.INTENT_BLUETOOTH_DISABLED:
116 case BleEncryptedServerService.INTENT_WAIT_WRITE_ENCRYPTED_CHARACTERISTIC:
120 case BleEncryptedServerService.INTENT_WAIT_READ_ENCRYPTED_CHARACTERISTIC:
124 case BleEncryptedServerService.INTENT_WAIT_WRITE_ENCRYPTED_DESCRIPTOR:
[all …]
DBleEncryptedClientService.java181 mSecure = intent.getBooleanExtra(BleEncryptedServerService.EXTRA_SECURE, false); in onStartCommand()
191 mTarget = BleEncryptedServerService.WRITE_CHARACTERISTIC; in onStartCommand()
195 mTarget = BleEncryptedServerService.READ_CHARACTERISTIC; in onStartCommand()
199 mTarget = BleEncryptedServerService.WRITE_DESCRIPTOR; in onStartCommand()
203 mTarget = BleEncryptedServerService.READ_DESCRIPTOR; in onStartCommand()
266 case BleEncryptedServerService.WRITE_CHARACTERISTIC: in startEncryptedAction()
272 case BleEncryptedServerService.READ_CHARACTERISTIC: in startEncryptedAction()
277 case BleEncryptedServerService.WRITE_DESCRIPTOR: in startEncryptedAction()
283 case BleEncryptedServerService.READ_DESCRIPTOR: in startEncryptedAction()
332 case BleEncryptedServerService.READ_CHARACTERISTIC:
[all …]
DBleInsecureEncryptedServerTestActivity.java46 mIntent = new Intent(this, BleEncryptedServerService.class); in onCreate()
47 mIntent.setAction(BleEncryptedServerService.ACTION_CONNECT_WITHOUT_SECURE); in onCreate()
57 filter.addAction(BleEncryptedServerService.INTENT_BLUETOOTH_DISABLED); in onResume()
95 case BleEncryptedServerService.INTENT_BLUETOOTH_DISABLED:
DBleSecureEncryptedServerTestActivity.java28 mIntent = new Intent(this, BleEncryptedServerService.class); in onCreate()
29 mIntent.setAction(BleEncryptedServerService.ACTION_CONNECT_WITH_SECURE); in onCreate()
DBleEncryptedServerService.java43 public class BleEncryptedServerService extends Service { class
44 public BleEncryptedServerService() { in BleEncryptedServerService() method in BleEncryptedServerService