Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:BluetoothGattService

55     private List<BluetoothGattService> mServices;
118 BluetoothGattService service = getService(srvcUuid, srvcInstId, srvcType);
141 BluetoothGattService service = getService(srvcUuid, srvcInstId, srvcType);
170 BluetoothGattService service = getService(srvcUuid, srvcInstId, srvcType);
200 BluetoothGattService service = getService(srvcUuid, srvcInstId, srvcType);
233 BluetoothGattService service = getService(srvcUuid, srvcInstId, srvcType);
299 mServices = new ArrayList<BluetoothGattService>();
386 /*package*/ BluetoothGattService getService(UUID uuid, int instanceId, int type) {
387 for(BluetoothGattService svc : mServices) {
512 BluetoothGattService service = characteristic.getService();
549 public boolean addService(BluetoothGattService service) {
560 List<BluetoothGattService> includedServices = service.getIncludedServices();
561 for (BluetoothGattService includedService : includedServices) {
602 public boolean removeService(BluetoothGattService service) {
606 BluetoothGattService intService = getService(service.getUuid(),
649 public List<BluetoothGattService> getServices() {
654 * Returns a {@link BluetoothGattService} from the list of services offered
663 * @return BluetoothGattService if supported, or null if the requested
666 public BluetoothGattService getService(UUID uuid) {
667 for (BluetoothGattService service : mServices) {