Home
last modified time | relevance | path

Searched refs:GetGroupName (Results 1 – 9 of 9) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp357 const char *PlatformRemoteGDBServer::GetGroupName(uint32_t gid) { in GetGroupName() function in PlatformRemoteGDBServer
358 const char *cached_group_name = Platform::GetGroupName(gid); in GetGroupName()
362 if (m_gdb_client.GetGroupName(gid, name)) in GetGroupName()
H A DPlatformRemoteGDBServer.h106 const char *GetGroupName(uint32_t gid) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.h40 const char *GetGroupName(uint32_t gid) override;
H A DPlatformPOSIX.cpp712 const char *PlatformPOSIX::GetGroupName(uint32_t gid) { in GetGroupName() function in PlatformPOSIX
713 const char *group_name = Platform::GetGroupName(gid); in GetGroupName()
718 return m_remote_platform_sp->GetGroupName(gid); in GetGroupName()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h288 bool GetGroupName(uint32_t gid, std::string &name);
H A DGDBRemoteCommunicationClient.cpp2227 bool GDBRemoteCommunicationClient::GetGroupName(uint32_t gid, in GetGroupName() function in GDBRemoteCommunicationClient
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DPlatform.h282 virtual const char *GetGroupName(uint32_t gid);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp319 cstr = platform->GetGroupName(m_gid); in Dump()
327 cstr = platform->GetGroupName(m_egid); in Dump()
371 cstr = platform->GetGroupName(m_gid); in DumpAsTableRow()
385 cstr = platform->GetGroupName(m_egid); in DumpAsTableRow()
H A DPlatform.cpp851 const char *Platform::GetGroupName(uint32_t gid) { in GetGroupName() function in Platform