Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/libsoftbus_stream/
H A Dvtp_stream_socket.cpp71 std::map<int32_t, std::mutex &> VtpStreamSocket::g_streamSocketLockMap; member in Communication::SoftBus::VtpStreamSocket
90 …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()
H A Dvtp_stream_socket.h203 static std::map<int32_t, std::mutex &> g_streamSocketLockMap; variable
/ohos5.0/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/udp/stream/libsoftbus_stream/vtp_stream_socket_test/
H A Dvtp_stream_socket_test.cpp641 …vtpStreamSocket->g_streamSocketLockMap.insert(std::pair<int, std::mutex &>(fd, streamSocketLock_));