Home
last modified time | relevance | path

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

/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/libethcore/
H A DKeyManager.cpp28 m_uuidLookup[uuid] = addr; in KeyManager()
82 m_uuidLookup[uuid] = addr; in load()
132 auto ait = m_uuidLookup.find(_uuid); in getPassword()
133 if (ait != m_uuidLookup.end()) in getPassword()
171 auto it = m_uuidLookup.find(_uuid); in address()
172 if (it == m_uuidLookup.end()) in address()
186 m_uuidLookup[uuid] = addr; in import()
207 m_uuidLookup[_uuid] = _address; in importExisting()
217 m_uuidLookup.erase(id); in kill()
H A DKeyManager.h138 std::unordered_map<h128, Address> m_uuidLookup; variable