Home
last modified time | relevance | path

Searched refs:GetGroupID (Results 1 – 19 of 19) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/Utility/
H A DProcessInstanceInfoTest.cpp134 EXPECT_EQ(deserialized.GetGroupID(), info.GetGroupID()); in TEST()
164 EXPECT_EQ(deserialized[0].GetGroupID(), info.GetGroupID()); in TEST()
/llvm-project-15.0.7/lldb/source/Utility/
H A DProcessInfo.cpp150 s.Format(" gid = {0,-5} ({1})\n", GetGroupID(), in Dump()
151 resolver.GetGroupName(GetGroupID()).value_or("")); in Dump()
214 &ProcessInstanceInfo::GetGroupID, &UserIDResolver::GetGroupName); in DumpAsTableRow()
280 m_match_info.GetGroupID() != proc_info.GetGroupID()) in UserIDsMatch()
/llvm-project-15.0.7/lldb/source/API/
H A DSBProcessInfo.cpp97 uint32_t SBProcessInfo::GetGroupID() { in GetGroupID() function in SBProcessInfo
102 group_id = m_opaque_up->GetGroupID(); in GetGroupID()
H A DSBAttachInfo.cpp159 uint32_t SBAttachInfo::GetGroupID() { in GetGroupID() function in SBAttachInfo
162 return m_opaque_sp->GetGroupID(); in GetGroupID()
H A DSBLaunchInfo.cpp85 uint32_t SBLaunchInfo::GetGroupID() { in GetGroupID() function in SBLaunchInfo
88 return m_opaque_sp->GetGroupID(); in GetGroupID()
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_process_info.py14 obj.GetGroupID()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBProcessInfo.i43 GetGroupID ();
H A DSBAttachInfo.i69 GetGroupID();
H A DSBLaunchInfo.i26 GetGroupID();
/llvm-project-15.0.7/lldb/include/lldb/Host/posix/
H A DHostInfoPosix.h28 static uint32_t GetGroupID();
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBProcessInfo.h37 uint32_t GetGroupID();
H A DSBAttachInfo.h124 uint32_t GetGroupID();
H A DSBLaunchInfo.h37 uint32_t GetGroupID();
/llvm-project-15.0.7/lldb/unittests/Host/linux/
H A DHostTest.cpp53 EXPECT_EQ(getegid(), Info.GetGroupID()); in TEST_F()
/llvm-project-15.0.7/lldb/source/Host/posix/
H A DHostInfoPosix.cpp127 uint32_t HostInfoPosix::GetGroupID() { return getgid(); } in GetGroupID() function in HostInfoPosix
/llvm-project-15.0.7/lldb/test/API/python_api/process/
H A DTestProcessAPI.py371 process_info.GetGroupID(), lldb.UINT32_MAX,
375 process_info.GetGroupID(), lldb.UINT32_MAX,
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DProcessInfo.h51 uint32_t GetGroupID() const { return m_gid; } in GetGroupID() function
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp1213 proc_info.GetUserID(), proc_info.GetGroupID(), in CreateProcessInfoResponse()
1242 proc_info.GetUserID(), proc_info.GetGroupID(), in CreateProcessInfoResponse_DebugServerStyle()
H A DGDBRemoteCommunicationClient.cpp2317 packet.Printf("gid:%u;", match_info.GetProcessInfo().GetGroupID()); in FindProcesses()