Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DPlatform.h920 IDToNameMap m_uid_map; variable
955 const auto pos = m_uid_map.find(uid); in GetCachedUserName()
956 return ((pos != m_uid_map.end()) ? pos->second.AsCString("") : nullptr); in GetCachedUserName()
963 m_uid_map[uid] = const_name; in SetCachedUserName()
973 m_uid_map[uid] = ConstString(); in SetUserNameNotFound()
978 m_uid_map.clear(); in ClearCachedUserNames()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DPlatform.cpp387 m_uid_map(), m_gid_map(), m_max_uid_name_len(0), m_max_gid_name_len(0), in Platform()