Lines Matching refs:HandleValue
25 typedef nn::util::Int64<bit64> HandleValue; typedef
34 HandleValue m_Data;
53 Handle(const HandleValue& value) in Handle()
88 operator HandleValue() const { return m_Data; } in HandleValue() function
89 operator const HandleValue&() const { return m_Data; }
93 …bool operator==(const HandleValue& rhs) const { return (m_Data.lo == rhs.lo) && (m_Data.hi == r…
94 …bool operator!=(const HandleValue& rhs) const { return (m_Data.lo != rhs.lo) || (m_Data.hi != r…
126 const HandleValue& Register(const T& object) in Register()
141 const HandleValue& GetHandle() const { return m_Handle; } in GetHandle()
145 …bool HasHandle(HandleValue value) const { return IsValid() && (m_Handle == value); } in HasHandle()
176 const HandleValue& Register(const T& object) in Register()
184 void Unregister(const HandleValue& value) in Unregister()
192 const T& GetObject(const HandleValue& value) const in GetObject()
199 bool TryGetObject(T* pObject, const HandleValue& value) const in TryGetObject()
227 const TEntry* FindEntryFromHandle(const HandleValue& value) const in FindEntryFromHandle()