/external/chromium_org/device/bluetooth/ |
D | bluetooth_gatt_service.h | 34 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 …]
|
D | bluetooth_gatt_service.cc | 11 BluetoothGattService::BluetoothGattService() { in BluetoothGattService() function in device::BluetoothGattService 14 BluetoothGattService::~BluetoothGattService() { in ~BluetoothGattService() 18 BluetoothGattService* BluetoothGattService::Create( in Create()
|
D | bluetooth_adapter.h | 24 class BluetoothGattService; variable 89 BluetoothGattService* service) {} in GattServiceAdded() 96 BluetoothGattService* service) {} in GattServiceRemoved() 104 BluetoothGattService* service) {} in GattDiscoveryCompleteForService() 112 BluetoothGattService* service) {} in GattServiceChanged()
|
D | bluetooth_device.h | 22 class BluetoothGattService; variable 381 virtual std::vector<BluetoothGattService*> GetGattServices() const; 385 virtual BluetoothGattService* GetGattService( 401 typedef std::map<std::string, BluetoothGattService*> GattServiceMap;
|
D | bluetooth_remote_gatt_service_chromeos.h | 38 : public device::BluetoothGattService, 50 virtual std::vector<device::BluetoothGattService*> 57 device::BluetoothGattService* service) OVERRIDE;
|
D | bluetooth_device.cc | 188 std::vector<BluetoothGattService*> 190 std::vector<BluetoothGattService*> services; in GetGattServices() 197 BluetoothGattService* BluetoothDevice::GetGattService( in GetGattService()
|
D | bluetooth_gatt_characteristic.h | 19 class BluetoothGattService; variable 135 virtual BluetoothGattService* GetService() const = 0;
|
D | bluetooth_gatt_chromeos_unittest.cc | 33 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 …]
|
D | bluetooth_remote_gatt_service_chromeos.cc | 102 std::vector<device::BluetoothGattService*> 105 return std::vector<device::BluetoothGattService*>(); in GetIncludedServices() 125 device::BluetoothGattService* service) { in AddIncludedService()
|
D | bluetooth_remote_gatt_characteristic_chromeos.h | 24 class BluetoothGattService; variable 46 virtual device::BluetoothGattService* GetService() const OVERRIDE;
|
D | bluetooth_gatt_notify_session_chromeos.cc | 88 device::BluetoothGattService* service = device->GetGattService(service_id_); in Stop()
|
D | bluetooth_remote_gatt_characteristic_chromeos.cc | 103 device::BluetoothGattService*
|
/external/chromium_org/device/bluetooth/test/ |
D | mock_bluetooth_gatt_service.h | 20 class MockBluetoothGattService : public BluetoothGattService { 36 MOCK_CONST_METHOD0(GetIncludedServices, std::vector<BluetoothGattService*>()); 40 MOCK_METHOD1(AddIncludedService, bool(BluetoothGattService*));
|
D | mock_bluetooth_gatt_characteristic.h | 20 class BluetoothGattService; variable 37 MOCK_CONST_METHOD0(GetService, BluetoothGattService*());
|
D | mock_bluetooth_device.h | 75 MOCK_CONST_METHOD0(GetGattServices, std::vector<BluetoothGattService*>()); 76 MOCK_CONST_METHOD1(GetGattService, BluetoothGattService*(const std::string&));
|
D | mock_bluetooth_gatt_service.cc | 28 .WillByDefault(Return(std::vector<BluetoothGattService*>())); in MockBluetoothGattService()
|
/external/chromium_org/extensions/browser/api/bluetooth_low_energy/ |
D | bluetooth_low_energy_event_router.cc | 30 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 …]
|
D | bluetooth_low_energy_event_router.h | 233 device::BluetoothGattService* service) OVERRIDE; 237 device::BluetoothGattService* service) OVERRIDE; 240 device::BluetoothGattService* service) OVERRIDE; 243 device::BluetoothGattService* service) OVERRIDE; 288 device::BluetoothGattService* FindServiceById(
|
D | bluetooth_low_energy_apitest.cc | 27 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()
|