Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:BluetoothGattService

28 public class BluetoothGattService {
80 protected List<BluetoothGattService> mIncludedServices;
88 * Create a new BluetoothGattService.
93 * {@link BluetoothGattService#SERVICE_TYPE_PRIMARY} or
94 * {@link BluetoothGattService#SERVICE_TYPE_SECONDARY}
96 public BluetoothGattService(UUID uuid, int serviceType) {
102 mIncludedServices = new ArrayList<BluetoothGattService>();
106 * Create a new BluetoothGattService
109 /*package*/ BluetoothGattService(BluetoothDevice device, UUID uuid,
116 mIncludedServices = new ArrayList<BluetoothGattService>();
134 public boolean addService(BluetoothGattService service) {
195 /*package*/ void addIncludedService(BluetoothGattService includedService) {
234 public List<BluetoothGattService> getIncludedServices() {