/external/llvm-project/lldb/source/API/ |
D | SBProcessInfo.cpp | 102 uint32_t SBProcessInfo::GetGroupID() { in GetGroupID() function in SBProcessInfo 103 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBProcessInfo, GetGroupID); in GetGroupID() 107 group_id = m_opaque_up->GetGroupID(); in GetGroupID() 199 LLDB_REGISTER_METHOD(uint32_t, SBProcessInfo, GetGroupID, ()); in RegisterMethods()
|
D | SBAttachInfo.cpp | 164 uint32_t SBAttachInfo::GetGroupID() { in GetGroupID() function in SBAttachInfo 165 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBAttachInfo, GetGroupID); in GetGroupID() 167 return m_opaque_sp->GetGroupID(); in GetGroupID() 289 LLDB_REGISTER_METHOD(uint32_t, SBAttachInfo, GetGroupID, ()); in RegisterMethods()
|
D | SBLaunchInfo.cpp | 83 uint32_t SBLaunchInfo::GetGroupID() { in GetGroupID() function in SBLaunchInfo 84 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBLaunchInfo, GetGroupID); in GetGroupID() 86 return m_opaque_sp->GetGroupID(); in GetGroupID() 357 LLDB_REGISTER_METHOD(uint32_t, SBLaunchInfo, GetGroupID, ()); in RegisterMethods()
|
/external/llvm-project/lldb/unittests/Utility/ |
D | ProcessInstanceInfoTest.cpp | 134 EXPECT_EQ(deserialized.GetGroupID(), info.GetGroupID()); in TEST() 164 EXPECT_EQ(deserialized[0].GetGroupID(), info.GetGroupID()); in TEST()
|
/external/llvm-project/lldb/source/Utility/ |
D | ProcessInfo.cpp | 151 s.Format(" gid = {0,-5} ({1})\n", GetGroupID(), in Dump() 152 resolver.GetGroupName(GetGroupID()).getValueOr("")); in Dump() 215 &ProcessInstanceInfo::GetGroupID, &UserIDResolver::GetGroupName); in DumpAsTableRow() 281 m_match_info.GetGroupID() != proc_info.GetGroupID()) in UserIDsMatch()
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_process_info.py | 14 obj.GetGroupID()
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBProcessInfo.i | 43 GetGroupID ();
|
D | SBAttachInfo.i | 67 GetGroupID();
|
D | SBLaunchInfo.i | 23 GetGroupID();
|
/external/llvm-project/lldb/include/lldb/Host/posix/ |
D | HostInfoPosix.h | 27 static uint32_t GetGroupID();
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBProcessInfo.h | 37 uint32_t GetGroupID();
|
D | SBAttachInfo.h | 124 uint32_t GetGroupID();
|
D | SBLaunchInfo.h | 37 uint32_t GetGroupID();
|
/external/llvm-project/lldb/unittests/Host/linux/ |
D | HostTest.cpp | 53 EXPECT_EQ(getegid(), Info.GetGroupID()); in TEST_F()
|
/external/llvm-project/lldb/source/Host/posix/ |
D | HostInfoPosix.cpp | 118 uint32_t HostInfoPosix::GetGroupID() { return getgid(); } in GetGroupID() function in HostInfoPosix
|
/external/llvm-project/lldb/test/API/python_api/process/ |
D | TestProcessAPI.py | 379 process_info.GetGroupID(), lldb.UINT32_MAX, 383 process_info.GetGroupID(), lldb.UINT32_MAX,
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | ProcessInfo.h | 51 uint32_t GetGroupID() const { return m_gid; } in GetGroupID() function
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | GDBRemoteCommunicationServerCommon.cpp | 1185 proc_info.GetUserID(), proc_info.GetGroupID(), in CreateProcessInfoResponse() 1214 proc_info.GetUserID(), proc_info.GetGroupID(), in CreateProcessInfoResponse_DebugServerStyle()
|
D | GDBRemoteCommunicationClient.cpp | 2222 packet.Printf("gid:%u;", match_info.GetProcessInfo().GetGroupID()); in FindProcesses()
|