HomeSort by relevance Sort by last modified time
    Searched refs:BluetoothGattDescriptor (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/device/bluetooth/
bluetooth_gatt_descriptor.cc 41 BluetoothGattDescriptor::CharacteristicExtendedPropertiesUuid() {
47 BluetoothGattDescriptor::CharacteristicUserDescriptionUuid() {
53 BluetoothGattDescriptor::ClientCharacteristicConfigurationUuid() {
59 BluetoothGattDescriptor::ServerCharacteristicConfigurationUuid() {
65 BluetoothGattDescriptor::CharacteristicPresentationFormatUuid() {
71 BluetoothGattDescriptor::CharacteristicAggregateFormatUuid() {
75 BluetoothGattDescriptor::BluetoothGattDescriptor() {
78 BluetoothGattDescriptor::~BluetoothGattDescriptor() {
    [all...]
bluetooth_gatt_descriptor.h 17 // BluetoothGattDescriptor represents a local or remote GATT characteristic
21 class BluetoothGattDescriptor {
99 // The API will construct a BluetoothGattDescriptor object for each instance
103 // an instance of BluetoothGattDescriptor for this descriptor as this will be
114 // Constructs a BluetoothGattDescriptor that can be associated with a local
130 static BluetoothGattDescriptor* Create(
179 BluetoothGattDescriptor();
180 virtual ~BluetoothGattDescriptor();
183 DISALLOW_COPY_AND_ASSIGN(BluetoothGattDescriptor);
bluetooth_gatt_characteristic.h 18 class BluetoothGattDescriptor;
106 // Instead, create and add a BluetoothGattDescriptor that represents the
149 virtual std::vector<BluetoothGattDescriptor*>
154 virtual BluetoothGattDescriptor* GetDescriptor(
162 virtual bool AddDescriptor(BluetoothGattDescriptor* descriptor) = 0;
bluetooth_gatt_service.h 18 class BluetoothGattDescriptor;
101 const BluetoothGattDescriptor* descriptor,
121 const BluetoothGattDescriptor* descriptor,
bluetooth_remote_gatt_characteristic_chromeos.h 23 class BluetoothGattDescriptor;
50 virtual std::vector<device::BluetoothGattDescriptor*>
52 virtual device::BluetoothGattDescriptor* GetDescriptor(
55 device::BluetoothGattDescriptor* descriptor) OVERRIDE;
bluetooth_adapter.h 23 class BluetoothGattDescriptor;
139 BluetoothGattDescriptor* descriptor) {}
144 BluetoothGattDescriptor* descriptor) {}
156 BluetoothGattDescriptor* descriptor,
bluetooth_remote_gatt_descriptor_chromeos.h 27 // BluetoothGattDescriptor for remote GATT characteristic descriptors on the
30 : public device::BluetoothGattDescriptor {
32 // device::BluetoothGattDescriptor overrides.
bluetooth_remote_gatt_characteristic_chromeos.cc 162 std::vector<device::BluetoothGattDescriptor*>
164 std::vector<device::BluetoothGattDescriptor*> descriptors;
171 device::BluetoothGattDescriptor*
182 device::BluetoothGattDescriptor* descriptor) {
bluetooth_gatt_chromeos_unittest.cc 32 using device::BluetoothGattDescriptor;
191 BluetoothGattDescriptor* descriptor) OVERRIDE {
208 BluetoothGattDescriptor* descriptor) OVERRIDE {
225 BluetoothGattDescriptor* descriptor,
687 BluetoothGattDescriptor* descriptor = characteristic->GetDescriptors()[0];
689 EXPECT_EQ(BluetoothGattDescriptor::ClientCharacteristicConfigurationUuid(),
718 EXPECT_EQ(BluetoothGattDescriptor::ClientCharacteristicConfigurationUuid(),
793 BluetoothGattDescriptor* descriptor = characteristic->GetDescriptors()[0];
795 EXPECT_EQ(BluetoothGattDescriptor::ClientCharacteristicConfigurationUuid(),
    [all...]
  /external/chromium_org/device/bluetooth/test/
mock_bluetooth_gatt_characteristic.h 19 class BluetoothGattDescriptor;
41 MOCK_CONST_METHOD0(GetDescriptors, std::vector<BluetoothGattDescriptor*>());
43 BluetoothGattDescriptor*(const std::string&));
44 MOCK_METHOD1(AddDescriptor, bool(BluetoothGattDescriptor*));
mock_bluetooth_gatt_descriptor.h 22 class MockBluetoothGattDescriptor : public BluetoothGattDescriptor {
mock_bluetooth_gatt_characteristic.cc 32 .WillByDefault(Return(std::vector<BluetoothGattDescriptor*>()));
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleServerService.java 30 import android.bluetooth.BluetoothGattDescriptor;
145 BluetoothGattDescriptor descriptor = getDescriptor();
214 private BluetoothGattDescriptor getDescriptor() {
218 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(DESCRIPTOR_UUID);
231 BluetoothGattDescriptor descriptor = new BluetoothGattDescriptor(DESCRIPTOR_UUID, 0x11);
335 int offset, BluetoothGattDescriptor descriptor) {
350 BluetoothGattDescriptor descriptor,
BleClientService.java 29 import android.bluetooth.BluetoothGattDescriptor;
165 BluetoothGattDescriptor descriptor = getDescriptor();
172 BluetoothGattDescriptor descriptor = getDescriptor();
273 private BluetoothGattDescriptor getDescriptor() {
277 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(DESCRIPTOR_UUID);
374 public void onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor,
388 public void onDescriptorRead(BluetoothGatt gatt, BluetoothGattDescriptor descriptor,
  /external/chromium_org/extensions/browser/api/bluetooth_low_energy/
bluetooth_low_energy_event_router.cc 29 using device::BluetoothGattDescriptor;
110 void PopulateDescriptor(const BluetoothGattDescriptor* descriptor,
499 const std::vector<BluetoothGattDescriptor*>& descriptors =
501 for (std::vector<BluetoothGattDescriptor*>::const_iterator iter =
506 const BluetoothGattDescriptor* descriptor = *iter;
529 BluetoothGattDescriptor* descriptor = FindDescriptorById(instance_id);
735 BluetoothGattDescriptor* descriptor = FindDescriptorById(instance_id);
774 BluetoothGattDescriptor* descriptor = FindDescriptorById(instance_id);
925 BluetoothGattDescriptor* descriptor) {
944 BluetoothGattDescriptor* descriptor)
    [all...]
bluetooth_low_energy_event_router.h 252 device::BluetoothGattDescriptor* descriptor) OVERRIDE;
255 device::BluetoothGattDescriptor* descriptor) OVERRIDE;
262 device::BluetoothGattDescriptor* descriptor,
296 // Returns a BluetoothGattDescriptor by its instance ID |instance_id|.
298 device::BluetoothGattDescriptor* FindDescriptorById(
301 // Called by BluetoothGattCharacteristic and BluetoothGattDescriptor in
319 // Called by BluetoothGattCharacteristic and BluetoothGattDescriptor in
bluetooth_low_energy_apitest.cc 26 using device::BluetoothGattDescriptor;
775 std::vector<BluetoothGattDescriptor*> descriptors;
795 .WillOnce(Return(std::vector<BluetoothGattDescriptor*>()))
838 .WillOnce(Return(static_cast<BluetoothGattDescriptor*>(NULL)))
    [all...]
  /developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
BluetoothLeService.java 25 import android.bluetooth.BluetoothGattDescriptor;
301 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(
303 descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
BluetoothLeService.java 25 import android.bluetooth.BluetoothGattDescriptor;
301 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(
303 descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
  /development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
BluetoothLeService.java 25 import android.bluetooth.BluetoothGattDescriptor;
301 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(
303 descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 2095 milliseconds