Searched refs:BleEncryptedServerService (Results 1 – 5 of 5) sorted by relevance
60 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 …]
181 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 …]
46 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:
28 mIntent = new Intent(this, BleEncryptedServerService.class); in onCreate()29 mIntent.setAction(BleEncryptedServerService.ACTION_CONNECT_WITH_SECURE); in onCreate()
43 public class BleEncryptedServerService extends Service { class44 public BleEncryptedServerService() { in BleEncryptedServerService() method in BleEncryptedServerService