Searched refs:GattService (Results 1 – 10 of 10) sorted by relevance
/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/gatt/ |
H A D | GattServiceTest.java | 34 private GattService mService; 48 TestUtils.startService(mServiceRule, GattService.class); in setUp() 49 mService = GattService.getGattService(); in setUp() 59 TestUtils.stopService(mServiceRule, GattService.class); in tearDown() 60 mService = GattService.getGattService(); in tearDown() 67 Assert.assertNotNull(GattService.getGattService()); in testInitialize() 73 GattService gattService = GattService.getGattService(); in testServiceUpAndDown() 75 TestUtils.stopService(mServiceRule, GattService.class); in testServiceUpAndDown() 76 mService = GattService.getGattService(); in testServiceUpAndDown() 83 TestUtils.startService(mServiceRule, GattService.class); in testServiceUpAndDown() [all …]
|
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
H A D | GattService.java | 97 public class GattService extends ProfileService { class 259 private static GattService sGattService; 522 private GattService mService; 524 BluetoothGattBinder(GattService svc) { in BluetoothGattBinder() 533 private GattService getService() { in getService() 544 GattService service = getService(); in getDevicesMatchingConnectionStates() 554 GattService service = getService(); in registerClient() 563 GattService service = getService(); in unregisterClient() 573 GattService service = getService(); in registerScanner() 582 GattService service = getService(); in unregisterScanner() [all …]
|
H A D | GattDebugUtils.java | 71 static boolean handleDebugAction(GattService svc, Intent intent) { in handleDebugAction()
|
H A D | AdvertiseManager.java | 46 private final GattService mService; 55 AdvertiseManager(GattService service, AdapterService adapterService) { in AdvertiseManager()
|
H A D | AppScanStats.java | 61 /* GattService is needed to add scan event protos to be dumped later */ GattService 161 AppScanStats(String name, WorkSource source, ContextMap map, GattService service) { in AppScanStats()
|
H A D | ContextMap.java | 186 App add(UUID uuid, WorkSource workSource, C callback, T info, GattService service) { in add()
|
H A D | ScanManager.java | 92 private GattService mService; 122 ScanManager(GattService service) { in ScanManager()
|
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/ |
H A D | Config.java | 38 import com.android.bluetooth.gatt.GattService; 84 new ProfileConfig(GattService.class, R.bool.profile_supported_gatt,
|
H A D | AdapterService.java | 106 import com.android.bluetooth.gatt.GattService; 400 if (GattService.class.getSimpleName().equals(profile.getName())) { in processProfileServiceStateChanged() 425 if ((mRunningProfiles.size() == 1 && (GattService.class.getSimpleName() in processProfileServiceStateChanged() 674 setProfileServiceState(GattService.class, BluetoothAdapter.STATE_ON); in bringUpBle() 710 if (supportedProfileServices.length == 1 && GattService.class.getSimpleName() in startProfileServices() 728 && GattService.class.getSimpleName().equals(mRunningProfiles.get(0).getName()))) { in stopProfileServices() 742 setProfileServiceState(GattService.class, BluetoothAdapter.STATE_OFF); in stopGattProfileService() 957 if (GattService.class.getSimpleName().equals(service.getSimpleName())) { in setAllProfileServiceStates()
|
/aosp12/system/bt/service/test/ |
H A D | parcelable_unittest.cc | 182 TEST(ParcelableTest, GattService) { in TEST() argument
|