Home
last modified time | relevance | path

Searched refs:GattService (Results 1 – 10 of 10) sorted by relevance

/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/gatt/
H A DGattServiceTest.java34 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 DGattService.java97 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 DGattDebugUtils.java71 static boolean handleDebugAction(GattService svc, Intent intent) { in handleDebugAction()
H A DAdvertiseManager.java46 private final GattService mService;
55 AdvertiseManager(GattService service, AdapterService adapterService) { in AdvertiseManager()
H A DAppScanStats.java61 /* 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 DContextMap.java186 App add(UUID uuid, WorkSource workSource, C callback, T info, GattService service) { in add()
H A DScanManager.java92 private GattService mService;
122 ScanManager(GattService service) { in ScanManager()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DConfig.java38 import com.android.bluetooth.gatt.GattService;
84 new ProfileConfig(GattService.class, R.bool.profile_supported_gatt,
H A DAdapterService.java106 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 Dparcelable_unittest.cc182 TEST(ParcelableTest, GattService) { in TEST() argument