Searched refs:g_streamSocketLockMap (Results 1 – 3 of 3) sorted by relevance
71 std::map<int32_t, std::mutex &> VtpStreamSocket::g_streamSocketLockMap; member in Communication::SoftBus::VtpStreamSocket90 …if (!g_streamSocketLockMap.empty() && g_streamSocketLockMap.find(fd) != g_streamSocketLockMap.end(… in AddStreamSocketLock()95 g_streamSocketLockMap.emplace(std::pair<int32_t, std::mutex &>(fd, streamsocketlock)); in AddStreamSocketLock()112 if (g_streamSocketLockMap.find(fd) != g_streamSocketLockMap.end()) { in RemoveStreamSocketLock()113 g_streamSocketLockMap.erase(fd); in RemoveStreamSocketLock()340 auto itLock = g_streamSocketLockMap.find(fd); in FillpStatistics()341 if (itLock != g_streamSocketLockMap.end()) { in FillpStatistics()
203 static std::map<int32_t, std::mutex &> g_streamSocketLockMap; variable
641 …vtpStreamSocket->g_streamSocketLockMap.insert(std::pair<int, std::mutex &>(fd, streamSocketLock_));