HomeSort by relevance Sort by last modified time
    Searched defs:GattService (Results 1 - 3 of 3) sorted by null

  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/gatt/
GattServiceTest.java 26 * Test cases for {@link GattService}.
33 private GattService mService;
42 Assume.assumeTrue("Ignore test when GattService is not enabled",
46 TestUtils.startService(mServiceRule, GattService.class);
47 mService = GattService.getGattService();
56 TestUtils.stopService(mServiceRule, GattService.class);
57 mService = GattService.getGattService();
64 Assert.assertNotNull(GattService.getGattService());
70 GattService gattService = GattService.getGattService()
    [all...]
  /tools/test/connectivity/acts/framework/acts/test_utils/bt/
GattEnum.py 241 class GattService(IntEnum):
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
GattService.java 82 public class GattService extends ProfileService {
85 private static final String TAG = GattServiceConfig.TAG_PREFIX + "GattService";
174 private static GattService sGattService;
253 * Get the current instance of {@link GattService}
255 * @return current instance of {@link GattService}
258 public static synchronized GattService getGattService() {
270 private static synchronized void setGattService(GattService instance) {
394 private GattService mService;
396 BluetoothGattBinder(GattService svc) {
405 private GattService getService()
    [all...]

Completed in 89 milliseconds