Home | History | Annotate | Download | only in com.example.android.bluetoothlegatt

Lines Matching refs:intentFilter

26 import android.content.IntentFilter;
301 private static IntentFilter makeGattUpdateIntentFilter() {
302 final IntentFilter intentFilter = new IntentFilter();
303 intentFilter.addAction(BluetoothLeService.ACTION_GATT_CONNECTED);
304 intentFilter.addAction(BluetoothLeService.ACTION_GATT_DISCONNECTED);
305 intentFilter.addAction(BluetoothLeService.ACTION_GATT_SERVICES_DISCOVERED);
306 intentFilter.addAction(BluetoothLeService.ACTION_DATA_AVAILABLE);
307 return intentFilter;