Home
last modified time | relevance | path

Searched refs:BluetoothGattService (Results 1 – 19 of 19) sorted by relevance

/external/chromium_org/device/bluetooth/
Dbluetooth_gatt_service.h34 class BluetoothGattService {
59 const BluetoothGattService* service,
79 const BluetoothGattService* service,
100 const BluetoothGattService* service,
120 const BluetoothGattService* service,
131 virtual ~BluetoothGattService();
141 static BluetoothGattService* Create(const BluetoothUUID& uuid,
175 virtual std::vector<BluetoothGattService*>
191 virtual bool AddIncludedService(BluetoothGattService* service) = 0;
208 BluetoothGattService();
[all …]
Dbluetooth_gatt_service.cc11 BluetoothGattService::BluetoothGattService() { in BluetoothGattService() function in device::BluetoothGattService
14 BluetoothGattService::~BluetoothGattService() { in ~BluetoothGattService()
18 BluetoothGattService* BluetoothGattService::Create( in Create()
Dbluetooth_adapter.h24 class BluetoothGattService; variable
89 BluetoothGattService* service) {} in GattServiceAdded()
96 BluetoothGattService* service) {} in GattServiceRemoved()
104 BluetoothGattService* service) {} in GattDiscoveryCompleteForService()
112 BluetoothGattService* service) {} in GattServiceChanged()
Dbluetooth_device.h22 class BluetoothGattService; variable
381 virtual std::vector<BluetoothGattService*> GetGattServices() const;
385 virtual BluetoothGattService* GetGattService(
401 typedef std::map<std::string, BluetoothGattService*> GattServiceMap;
Dbluetooth_remote_gatt_service_chromeos.h38 : public device::BluetoothGattService,
50 virtual std::vector<device::BluetoothGattService*>
57 device::BluetoothGattService* service) OVERRIDE;
Dbluetooth_device.cc188 std::vector<BluetoothGattService*>
190 std::vector<BluetoothGattService*> services; in GetGattServices()
197 BluetoothGattService* BluetoothDevice::GetGattService( in GetGattService()
Dbluetooth_gatt_characteristic.h19 class BluetoothGattService; variable
135 virtual BluetoothGattService* GetService() const = 0;
Dbluetooth_gatt_chromeos_unittest.cc33 using device::BluetoothGattService;
84 BluetoothGattService* service) OVERRIDE { in GattServiceAdded()
102 BluetoothGattService* service) OVERRIDE { in GattServiceRemoved()
121 BluetoothGattService* service) OVERRIDE { in GattDiscoveryCompleteForService()
129 BluetoothGattService* service) OVERRIDE { in GattServiceChanged()
502 BluetoothGattService* service = in TEST_F()
582 BluetoothGattService* service = in TEST_F()
650 BluetoothGattService* service = in TEST_F()
748 BluetoothGattService* service = device->GetGattServices()[0]; in TEST_F()
816 BluetoothGattService* service = in TEST_F()
[all …]
Dbluetooth_remote_gatt_service_chromeos.cc102 std::vector<device::BluetoothGattService*>
105 return std::vector<device::BluetoothGattService*>(); in GetIncludedServices()
125 device::BluetoothGattService* service) { in AddIncludedService()
Dbluetooth_remote_gatt_characteristic_chromeos.h24 class BluetoothGattService; variable
46 virtual device::BluetoothGattService* GetService() const OVERRIDE;
Dbluetooth_gatt_notify_session_chromeos.cc88 device::BluetoothGattService* service = device->GetGattService(service_id_); in Stop()
Dbluetooth_remote_gatt_characteristic_chromeos.cc103 device::BluetoothGattService*
/external/chromium_org/device/bluetooth/test/
Dmock_bluetooth_gatt_service.h20 class MockBluetoothGattService : public BluetoothGattService {
36 MOCK_CONST_METHOD0(GetIncludedServices, std::vector<BluetoothGattService*>());
40 MOCK_METHOD1(AddIncludedService, bool(BluetoothGattService*));
Dmock_bluetooth_gatt_characteristic.h20 class BluetoothGattService; variable
37 MOCK_CONST_METHOD0(GetService, BluetoothGattService*());
Dmock_bluetooth_device.h75 MOCK_CONST_METHOD0(GetGattServices, std::vector<BluetoothGattService*>());
76 MOCK_CONST_METHOD1(GetGattService, BluetoothGattService*(const std::string&));
Dmock_bluetooth_gatt_service.cc28 .WillByDefault(Return(std::vector<BluetoothGattService*>())); in MockBluetoothGattService()
/external/chromium_org/extensions/browser/api/bluetooth_low_energy/
Dbluetooth_low_energy_event_router.cc30 using device::BluetoothGattService;
36 void PopulateService(const BluetoothGattService* service, in PopulateService()
318 const std::vector<BluetoothGattService*>& services = in GetServices()
320 for (std::vector<BluetoothGattService*>::const_iterator iter = in GetServices()
325 const BluetoothGattService* service = *iter; in GetServices()
345 BluetoothGattService* gatt_service = FindServiceById(instance_id); in GetService()
366 BluetoothGattService* service = FindServiceById(instance_id); in GetIncludedServices()
374 const std::vector<BluetoothGattService*>& includes = in GetIncludedServices()
376 for (std::vector<BluetoothGattService*>::const_iterator iter = in GetIncludedServices()
381 const BluetoothGattService* included = *iter; in GetIncludedServices()
[all …]
Dbluetooth_low_energy_event_router.h233 device::BluetoothGattService* service) OVERRIDE;
237 device::BluetoothGattService* service) OVERRIDE;
240 device::BluetoothGattService* service) OVERRIDE;
243 device::BluetoothGattService* service) OVERRIDE;
288 device::BluetoothGattService* FindServiceById(
Dbluetooth_low_energy_apitest.cc27 using device::BluetoothGattService;
265 std::vector<BluetoothGattService*> services; in IN_PROC_BROWSER_TEST_F()
276 .WillOnce(Return(std::vector<BluetoothGattService*>())) in IN_PROC_BROWSER_TEST_F()
304 .WillOnce(Return(static_cast<BluetoothGattService*>(NULL))) in IN_PROC_BROWSER_TEST_F()
419 std::vector<BluetoothGattService*> includes; in IN_PROC_BROWSER_TEST_F()
429 .WillOnce(Return(std::vector<BluetoothGattService*>())) in IN_PROC_BROWSER_TEST_F()
459 .WillOnce(Return(static_cast<BluetoothGattService*>(NULL))) in IN_PROC_BROWSER_TEST_F()
493 .WillOnce(Return(static_cast<BluetoothGattService*>(NULL))) in IN_PROC_BROWSER_TEST_F()
828 .WillOnce(Return(static_cast<BluetoothGattService*>(NULL))) in IN_PROC_BROWSER_TEST_F()
1053 std::vector<BluetoothGattService*> services; in IN_PROC_BROWSER_TEST_F()