Home
last modified time | relevance | path

Searched refs:characteristic_id (Results 1 – 16 of 16) sorted by relevance

/system/bt/service/common/bluetooth/binder/
DIBluetoothGattServerCallback.h65 const bluetooth::GattIdentifier& characteristic_id) = 0;
76 const bluetooth::GattIdentifier& characteristic_id) = 0;
128 const bluetooth::GattIdentifier& characteristic_id) override;
137 const bluetooth::GattIdentifier& characteristic_id) override;
DIBluetoothGattServerCallback.cpp181 const bluetooth::GattIdentifier& characteristic_id) { in OnCharacteristicReadRequest() argument
190 WriteGattIdentifierToParcel(characteristic_id, &data); in OnCharacteristicReadRequest()
222 const bluetooth::GattIdentifier& characteristic_id) { in OnCharacteristicWriteRequest() argument
233 WriteGattIdentifierToParcel(characteristic_id, &data); in OnCharacteristicWriteRequest()
DIBluetoothGattServer.h89 const bluetooth::GattIdentifier& characteristic_id,
149 const bluetooth::GattIdentifier& characteristic_id,
DIBluetoothGattServer.cpp309 const bluetooth::GattIdentifier& characteristic_id, in SendNotification() argument
317 WriteGattIdentifierToParcel(characteristic_id, &data); in SendNotification()
/system/bt/service/doc/
DIBluetoothGattClientCallback.txt49 * |characteristic_id| structure. |properties| contains the bitmask of GATT
52 void onGetCharacteristic(in GattIdentifier characteristic_id,
72 * code in case of an error. |characteristic_id| refers to the characteristic
77 void onCharacteristicRead(in int status, in GattIdentifier characteristic_id,
83 * code in case of an error. |characteristic_id| refers to the characteristic
87 in GattIdentifier characteristic_id);
118 * indication for the characteristic with identifier |characteristic_id|.
120 void onNotify(in GattIdentifier characteristic_id, in byte[] value);
DIBluetoothGattClient.txt63 * |characteristic_id|. The result will be asynchronously reported in
74 in GattIdentifier characteristic_id);
78 * |characteristic_id| with the value |value|. The |write_type| parameter
95 in GattIdentifier characteristic_id,
139 * |characteristic_id|. If successful, notifications will be signaled via
144 in GattIdentifier characteristic_id);
148 * |characteristic_id|. Returns false if the request cannot be initiated, e.g.
153 in GattIdentifier characteristic_id);
DIBluetoothGattServerCallback.txt42 * |characteristic_id|. |offset| is the index of the characteristic value that
55 in GattIdentifier characteristic_id);
78 * |characteristic_id| with the value |value|. An implementation should handle
93 in GattIdentifier characteristic_id);
DIBluetoothGattServer.txt112 in GattIdentifier characteristic_id,
/system/bt/service/ipc/binder/
Dbluetooth_gatt_server_binder_server.cpp192 const bluetooth::GattIdentifier& characteristic_id, in SendNotification() argument
225 if (!gatt_server->SendNotification(device_address, characteristic_id, in SendNotification()
238 const bluetooth::GattIdentifier& characteristic_id) { in OnCharacteristicReadRequest() argument
249 device_address, request_id, offset, is_long, characteristic_id); in OnCharacteristicReadRequest()
306 const bluetooth::GattIdentifier& characteristic_id) { in OnCharacteristicWriteRequest() argument
318 value, characteristic_id); in OnCharacteristicWriteRequest()
Dbluetooth_gatt_server_binder_server.h63 const bluetooth::GattIdentifier& characteristic_id,
72 const bluetooth::GattIdentifier& characteristic_id) override;
83 const bluetooth::GattIdentifier& characteristic_id) override;
/system/bt/service/example/heart_rate/
Dheart_rate_server.h62 const bluetooth::GattIdentifier& characteristic_id) override;
71 const bluetooth::GattIdentifier& characteristic_id) override;
Dheart_rate_server.cpp342 const bluetooth::GattIdentifier& characteristic_id) { in OnCharacteristicReadRequest() argument
347 CHECK(characteristic_id == body_sensor_loc_id_); in OnCharacteristicReadRequest()
394 const bluetooth::GattIdentifier& characteristic_id) { in OnCharacteristicWriteRequest() argument
410 CHECK(characteristic_id == hr_control_point_id_); in OnCharacteristicWriteRequest()
/system/bt/service/
Dgatt_server.h56 const bluetooth::GattIdentifier& characteristic_id) = 0;
82 const bluetooth::GattIdentifier& characteristic_id) = 0;
190 const GattIdentifier& characteristic_id,
Dgatt_server.cpp371 const GattIdentifier& characteristic_id, in SendNotification() argument
395 auto handle_iter = id_to_handle_map_.find(characteristic_id); in SendNotification()
/system/bt/service/common/bluetooth/
Dgatt_identifier.h47 const GattIdentifier& characteristic_id);
/system/bt/service/test/
Dgatt_server_unittest.cpp77 const bluetooth::GattIdentifier& characteristic_id) override { in OnCharacteristicReadRequest() argument
83 char_read_req_.gatt_id = characteristic_id; in OnCharacteristicReadRequest()
106 const bluetooth::GattIdentifier& characteristic_id) override { in OnCharacteristicWriteRequest() argument
113 char_write_req_.gatt_id = characteristic_id; in OnCharacteristicWriteRequest()