HomeSort by relevance Sort by last modified time
    Searched defs:characteristic (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/chromeos/dbus/
fake_bluetooth_gatt_descriptor_service_provider.cc 72 FakeBluetoothGattCharacteristicServiceProvider* characteristic = local
75 if (!characteristic) {
76 VLOG(1) << "GATT characteristic for descriptor does not exist: "
81 characteristic->service_path())) {
103 FakeBluetoothGattCharacteristicServiceProvider* characteristic = local
106 if (!characteristic) {
107 VLOG(1) << "GATT characteristic for descriptor does not exist: "
112 characteristic->service_path())) {
bluetooth_gatt_descriptor_client.h 20 // characteristic descriptor objects exposed by the Bluetooth daemon.
25 // The 128-bit characteristic descriptor UUID. [read-only]
28 // Object path of the GATT characteristic the descriptor belongs to.
30 dbus::Property<dbus::ObjectPath> characteristic; member in struct:chromeos::BluetoothGattDescriptorClient::Properties
38 // Interface for observing changes from a remote GATT characteristic
  /external/chromium_org/device/bluetooth/
bluetooth_remote_gatt_service_chromeos.cc 119 device::BluetoothGattCharacteristic* characteristic) {
161 BluetoothRemoteGattCharacteristicChromeOS* characteristic,
163 DCHECK(characteristic->GetService() == this);
165 adapter_->NotifyGattCharacteristicValueChanged(characteristic, value);
169 BluetoothRemoteGattCharacteristicChromeOS* characteristic,
172 DCHECK(characteristic->GetService() == this);
173 DCHECK(descriptor->GetCharacteristic() == characteristic);
185 BluetoothRemoteGattCharacteristicChromeOS* characteristic,
188 DCHECK(characteristic->GetService() == this);
189 DCHECK(descriptor->GetCharacteristic() == characteristic);
242 BluetoothRemoteGattCharacteristicChromeOS* characteristic = local
263 BluetoothRemoteGattCharacteristicChromeOS* characteristic = iter->second; local
    [all...]
bluetooth_gatt_chromeos_unittest.cc 48 // Compares GATT characteristic/descriptor values. Returns true, if the values
138 BluetoothGattCharacteristic* characteristic) OVERRIDE {
142 last_gatt_characteristic_id_ = characteristic->GetIdentifier();
143 last_gatt_characteristic_uuid_ = characteristic->GetUUID();
145 ASSERT_TRUE(characteristic->GetService());
146 EXPECT_EQ(characteristic->GetService()->GetCharacteristic(
148 characteristic);
155 BluetoothGattCharacteristic* characteristic) OVERRIDE {
159 last_gatt_characteristic_id_ = characteristic->GetIdentifier();
160 last_gatt_characteristic_uuid_ = characteristic->GetUUID()
669 BluetoothGattCharacteristic* characteristic = service->GetCharacteristic( local
760 BluetoothGattCharacteristic* characteristic = service->GetCharacteristic( local
830 BluetoothGattCharacteristic* characteristic = local
939 BluetoothGattCharacteristic *characteristic = service->GetCharacteristic( local
988 BluetoothGattCharacteristic* characteristic = service->GetCharacteristic( local
1078 BluetoothGattCharacteristic* characteristic = service->GetCharacteristic( local
1227 BluetoothGattCharacteristic* characteristic = service->GetCharacteristic( local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleServerService.java 139 BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID); local
140 if (characteristic != null) return;
141 characteristic.setValue(writeValue);
205 BluetoothGattCharacteristic characteristic = local
207 if (characteristic == null) {
208 showMessage("Characteristic not found");
211 return characteristic;
215 BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID); local
216 if (characteristic == null) return null;
218 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(DESCRIPTOR_UUID)
229 BluetoothGattCharacteristic characteristic = local
    [all...]
BleClientService.java 153 BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID); local
154 if (characteristic == null) return;
155 characteristic.setValue(writeValue);
156 mBluetoothGatt.writeCharacteristic(characteristic);
160 BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID); local
161 if (characteristic != null) mBluetoothGatt.readCharacteristic(characteristic);
177 BluetoothGattCharacteristic characteristic = getCharacteristic(UPDATE_CHARACTERISTIC_UUID); local
178 if (characteristic != null)
179 mBluetoothGatt.setCharacteristicNotification(characteristic, enable)
274 BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID); local
    [all...]
  /external/chromium_org/extensions/browser/api/bluetooth_low_energy/
bluetooth_low_energy_api.cc 305 apibtle::Characteristic characteristic; local
308 extension(), params->characteristic_id, &characteristic);
318 SetResult(apibtle::CharacteristicToValue(&characteristic).release());
513 // Obtain info on the characteristic and see whether or not the characteristic
515 apibtle::Characteristic characteristic; local
518 ->GetCharacteristic(extension(), instance_id_, &characteristic);
528 SetResult(apibtle::CharacteristicToValue(&characteristic).release())
    [all...]
bluetooth_low_energy_event_router.cc 91 void PopulateCharacteristic(const BluetoothGattCharacteristic* characteristic,
92 apibtle::Characteristic* out) {
95 out->uuid = characteristic->GetUUID().canonical_value();
96 out->is_local = characteristic->IsLocal();
97 out->instance_id.reset(new std::string(characteristic->GetIdentifier()));
99 PopulateService(characteristic->GetService(), &out->service);
100 PopulateCharacteristicProperties(characteristic->GetProperties(),
103 const std::vector<uint8>& value = characteristic->GetValue();
118 PopulateCharacteristic(descriptor->GetCharacteristic(), &out->characteristic);
425 // Populate an API characteristic and add it to the return value
426 const BluetoothGattCharacteristic* characteristic = *iter; local
450 BluetoothGattCharacteristic* characteristic = local
482 BluetoothGattCharacteristic* characteristic = local
560 BluetoothGattCharacteristic* characteristic = local
600 BluetoothGattCharacteristic* characteristic = local
659 BluetoothGattCharacteristic* characteristic = local
930 BluetoothGattCharacteristic* characteristic = descriptor->GetCharacteristic(); local
949 BluetoothGattCharacteristic* characteristic = descriptor->GetCharacteristic(); local
1002 BluetoothGattCharacteristic* characteristic = descriptor->GetCharacteristic(); local
1067 BluetoothGattCharacteristic* characteristic = *citer; local
1184 BluetoothGattCharacteristic* characteristic = local
    [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 454 milliseconds