Searched refs:clientSocketMap_ (Results 1 – 4 of 4) sorted by relevance
388 auto iter = clientSocketMap_.find(socketFd); in BindService()389 if (iter == clientSocketMap_.end()) { in BindService()390 clientSocketMap_.insert(std::pair<int32_t, std::string>(socketFd, networkId)); in BindService()434 auto iter = clientSocketMap_.find(socketFd); in CloseSocket()435 if (iter != clientSocketMap_.end()) { in CloseSocket()436 clientSocketMap_.erase(iter); in CloseSocket()447 auto iter = clientSocketMap_.find(socket); in GetNetworkIdBySocket()448 if (iter != clientSocketMap_.end()) { in GetNetworkIdBySocket()
708 …clientSocketMap_.insert(std::pair<std::string, std::shared_ptr<BaseSocket>>(connectionName, socket… in AddConnection()715 auto iter = clientSocketMap_.find(connectionName); in DeleteConnection()716 if (iter == clientSocketMap_.end()) { in DeleteConnection()720 clientSocketMap_.erase(connectionName); in DeleteConnection()728 auto iter = clientSocketMap_.find(connectionName); in FindClientSocket()729 if (iter != clientSocketMap_.end()) { in FindClientSocket()
151 std::map<int32_t, std::string> clientSocketMap_; variable
100 std::map<std::string, std::shared_ptr<BaseSocket>> clientSocketMap_; variable