Home
last modified time | relevance | path

Searched refs:gatt_op_queue (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/system/bta/gatt/
Dbta_gattc_queue.cc46 BtaGattQueue::gatt_op_queue; member in BtaGattQueue
144 if (gatt_op_queue.empty()) { in gatt_execute_next_op()
149 auto map_ptr = gatt_op_queue.find(conn_id); in gatt_execute_next_op()
150 if (map_ptr == gatt_op_queue.end() || map_ptr->second.empty()) { in gatt_execute_next_op()
220 gatt_op_queue.erase(conn_id); in Clean()
226 gatt_op_queue[conn_id].push_back({.type = GATT_READ_CHAR, in ReadCharacteristic()
235 gatt_op_queue[conn_id].push_back({.type = GATT_READ_DESC, in ReadDescriptor()
246 gatt_op_queue[conn_id].push_back({.type = GATT_WRITE_CHAR, in WriteCharacteristic()
259 gatt_op_queue[conn_id].push_back({.type = GATT_WRITE_DESC, in WriteDescriptor()
272 gatt_op_queue[conn_id].push_back({.type = GATT_CONFIG_MTU, in ConfigureMtu()
[all …]
/packages/modules/Bluetooth/system/bta/include/
Dbta_gatt_queue.h92 static std::unordered_map<uint16_t, std::list<gatt_operation>> gatt_op_queue; variable