Home
last modified time | relevance | path

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

/ohos5.0/base/useriam/user_auth_framework/services/remote_connect/src/
H A Dsoft_bus_server_socket.cpp144 auto iter = clientConnectionMap_.find(socketId); in AddClientConnection()
145 if (iter == clientConnectionMap_.end()) { in AddClientConnection()
146 clientConnectionMap_.insert(std::pair<int32_t, std::string>(socketId, connectionName)); in AddClientConnection()
156 auto iter = clientConnectionMap_.find(socketId); in DeleteClientConnection()
157 if (iter != clientConnectionMap_.end()) { in DeleteClientConnection()
160 clientConnectionMap_.erase(iter); in DeleteClientConnection()
170 auto iter = clientConnectionMap_.find(socketId); in GetClientConnectionName()
171 if (iter != clientConnectionMap_.end()) { in GetClientConnectionName()
181 for (const auto &iter : clientConnectionMap_) { in GetSocketIdByClientConnectionName()
/ohos5.0/base/useriam/user_auth_framework/services/remote_connect/inc/
H A Dsoft_bus_server_socket.h58 std::map<int32_t, std::string> clientConnectionMap_; variable