Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/transport/
H A Dtransport_l2cap.cpp23 std::map<uint16_t, L2capTransport *> L2capTransport::g_clientTransportMap {};
202 if (g_clientTransportMap.find(lcid) != g_clientTransportMap.end()) { in FindClientTransport()
203 clientTransport = g_clientTransportMap.at(lcid); in FindClientTransport()
261 __func__, g_clientTransportMap.size()); in TransportL2cConnectReqCallback()
263 for (it = g_clientTransportMap.begin(); it != g_clientTransportMap.end(); ++it) { in TransportL2cConnectReqCallback()
266 g_clientTransportMap[lcid] = transport; in TransportL2cConnectReqCallback()
363 g_clientTransportMap.erase(lcid); in TransportRecvDisconnectionReqCallback()
382 g_clientTransportMap.erase(lcid); in TransportRecvDisconnectionRspCallback()
401 g_clientTransportMap.erase(lcid); in TransportDisconnectAbnormalCallback()
485 g_clientTransportMap.erase(lcid); in TransportRecvConnectionRspCallbackNative()
[all …]
H A Dtransport_l2cap.h401 static std::map<uint16_t, L2capTransport *> g_clientTransportMap; variable