Home
last modified time | relevance | path

Searched refs:congestion_queue (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Bluetooth/system/bta/gatt/
Dbta_gatts_queue.cc35 std::unordered_map<tCONN_ID, bool> BtaGattServerQueue::congestion_queue; member in BtaGattServerQueue
49 auto ptr = congestion_queue.find(conn_id); in gatts_execute_next_op()
51 if (ptr != congestion_queue.end()) { in gatts_execute_next_op()
116 congestion_queue[conn_id] = congested; in CongestionCallback()
/packages/modules/Bluetooth/system/bta/include/
Dbta_gatt_server_queue.h49 static std::unordered_map<tCONN_ID, bool> congestion_queue; variable
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth_gatt.rs43 congestion_queue: Vec<(RawAddress, GattStatus, i32)>, field
124 congestion_queue: vec![], in add()
199 congestion_queue: Vec<(RawAddress, GattStatus)>, field
271 congestion_queue: vec![], in add()
2944 client.congestion_queue.push((addr, status, handle as i32)); in write_characteristic_cb()
3022 let mut congestion_queue: Vec<(RawAddress, GattStatus, i32)> = vec![]; in congestion_cb() localVariable
3023 client.congestion_queue.retain(|v| { in congestion_cb()
3024 congestion_queue.push(*v); in congestion_cb()
3030 for callback in congestion_queue.iter() { in congestion_cb()
3448 server.congestion_queue.push((address, status)); in indication_sent_cb()
[all …]