Home
last modified time | relevance | path

Searched refs:send_indication (Results 1 – 11 of 11) sorted by relevance

/packages/modules/Bluetooth/system/rust/src/gatt/server/
Datt_server_bearer.rs118 pub fn send_indication( in send_indication() method
417 spawn_local(conn.as_ref().send_indication( in test_indication_confirmation()
441 spawn_local(conn.as_ref().send_indication( in test_sequential_indications()
453 spawn_local(conn.as_ref().send_indication( in test_sequential_indications()
482 spawn_local(conn.as_ref().send_indication( in test_queued_indications_only_one_sent()
486 let pending_send2 = spawn_local(conn.as_ref().send_indication( in test_queued_indications_only_one_sent()
507 spawn_local(conn.as_ref().send_indication( in test_queued_indications_dequeue_second()
511 let pending_send2 = spawn_local(conn.as_ref().send_indication( in test_queued_indications_dequeue_second()
543 spawn_local(conn.as_ref().send_indication( in test_queued_indications_complete_both()
547 let pending_send2 = spawn_local(conn.as_ref().send_indication( in test_queued_indications_complete_both()
[all …]
/packages/modules/Bluetooth/system/stack/gatt/
Dgatt_main.cc1160 bool send_indication = true; in gatt_proc_srv_chg() local
1163 send_indication = false; in gatt_proc_srv_chg()
1169 if (send_indication && in gatt_proc_srv_chg()
1174 send_indication = false; in gatt_proc_srv_chg()
1178 if (send_indication) gatt_send_srv_chg_ind(bda); in gatt_proc_srv_chg()
/packages/modules/Bluetooth/system/rust/src/gatt/
Dffi.rs172 fn send_indication(_server_id: u8, handle: u16, conn_id: u16, value: &[u8]); in send_indication() function
438 fn send_indication(_server_id: u8, handle: u16, conn_id: u16, value: &[u8]) { in send_indication() function
450 let pending_indication = bearer.send_indication(handle, value); in send_indication()
/packages/modules/Bluetooth/system/include/hardware/
Dbt_gatt_server.h174 bt_status_t (*send_indication)(int server_if, int attribute_handle, member
/packages/modules/Bluetooth/system/rust/tests/
Dgatt_server_test.rs281 gatt.get_bearer(TCB_IDX).unwrap().send_indication(CHARACTERISTIC_HANDLE, data.clone()), in test_send_indication()
316 let pending_indication = spawn_local(gatt.get_bearer(TCB_IDX).unwrap().send_indication( in test_send_indication_and_disconnect()
/packages/modules/Bluetooth/system/blueberry/tests/topshim/lib/
Dgatt_client.py367 async def send_indication(self): member in GattClient
/packages/modules/Bluetooth/system/rust/src/gatt/server/services/
Dgatt.rs132 bearer.send_indication( in on_service_change()
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dgatt.rs1412 pub fn send_indication( in send_indication() method
1423 send_indication, in send_indication()
/packages/modules/Bluetooth/system/gd/rust/topshim/facade/src/
Dgatt_service.rs714 fn send_indication(&mut self, ctx: RpcContext<'_>, _req: Empty, sink: UnarySink<Empty>) { in send_indication() method
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_gatt.cpp2084 bluetooth::gatt::send_indication(server_if, attr_handle, conn_id, data); in gattServerSendIndicationNative()
2086 sGattIf->server->send_indication(server_if, attr_handle, conn_id, in gattServerSendIndicationNative()
2101 sGattIf->server->send_indication(server_if, attr_handle, conn_id, in gattServerSendNotificationNative()
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth_gatt.rs2862 self.gatt.as_ref().unwrap().lock().unwrap().server.send_indication( in send_notification()