/external/llvm-project/lldb/unittests/Host/linux/ |
D | HostTest.cpp | 31 TEST_F(HostTest, GetProcessInfo) { in TEST_F() argument 33 ASSERT_FALSE(Host::GetProcessInfo(0, Info)); in TEST_F() 35 ASSERT_TRUE(Host::GetProcessInfo(getpid(), Info)); in TEST_F()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectPlatform.cpp | 1126 m_options.match_info.GetProcessInfo().GetProcessID(); in DoExecute() 1129 if (platform_sp->GetProcessInfo(pid, proc_info)) { in DoExecute() 1146 m_options.match_info.GetProcessInfo().GetName(); in DoExecute() 1228 match_info.GetProcessInfo().SetProcessID(id); in SetOptionValue() 1235 match_info.GetProcessInfo().SetParentProcessID(id); in SetOptionValue() 1243 match_info.GetProcessInfo().SetUserID(success ? id : UINT32_MAX); in SetOptionValue() 1250 match_info.GetProcessInfo().SetEffectiveUserID(success ? id in SetOptionValue() 1259 match_info.GetProcessInfo().SetGroupID(success ? id : UINT32_MAX); in SetOptionValue() 1266 match_info.GetProcessInfo().SetEffectiveGroupID(success ? id in SetOptionValue() 1283 match_info.GetProcessInfo().GetArchitecture() = in SetOptionValue() [all …]
|
/external/llvm-project/lldb/unittests/Utility/ |
D | ProcessInstanceInfoTest.cpp | 101 match.GetProcessInfo().GetExecutableFile().SetFile("bar", in TEST() 107 match.GetProcessInfo().GetExecutableFile() = FileSpec(); in TEST()
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | ProcessInfo.h | 179 ProcessInstanceInfo &GetProcessInfo() { return m_match_info; } 181 const ProcessInstanceInfo &GetProcessInfo() const { return m_match_info; }
|
/external/llvm-project/lldb/source/Host/openbsd/ |
D | Host.cpp | 80 match_info_ptr->GetProcessInfo().GetName()))) in GetOpenBSDProcessArgs() 203 bool Host::GetProcessInfo(lldb::pid_t pid, ProcessInstanceInfo &process_info) { in GetProcessInfo() function in Host
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | GDBRemoteCommunicationServerCommon.cpp | 324 if (Host::GetProcessInfo(pid, proc_info)) { in Handle_qProcessInfoPID() 350 match_info.GetProcessInfo().GetExecutableFile().SetFile( in Handle_qfProcessInfo() 367 match_info.GetProcessInfo().SetProcessID(pid); in Handle_qfProcessInfo() 372 match_info.GetProcessInfo().SetParentProcessID(pid); in Handle_qfProcessInfo() 377 match_info.GetProcessInfo().SetUserID(uid); in Handle_qfProcessInfo() 382 match_info.GetProcessInfo().SetGroupID(gid); in Handle_qfProcessInfo() 387 match_info.GetProcessInfo().SetEffectiveUserID(uid); in Handle_qfProcessInfo() 392 match_info.GetProcessInfo().SetEffectiveGroupID(gid); in Handle_qfProcessInfo() 397 match_info.GetProcessInfo().GetArchitecture() = in Handle_qfProcessInfo()
|
D | GDBRemoteCommunicationClient.cpp | 2011 bool GDBRemoteCommunicationClient::GetProcessInfo( in GetProcessInfo() function in GDBRemoteCommunicationClient 2176 const char *name = match_info.GetProcessInfo().GetName(); in FindProcesses() 2213 if (match_info.GetProcessInfo().ProcessIDIsValid()) in FindProcesses() 2215 match_info.GetProcessInfo().GetProcessID()); in FindProcesses() 2216 if (match_info.GetProcessInfo().ParentProcessIDIsValid()) in FindProcesses() 2218 match_info.GetProcessInfo().GetParentProcessID()); in FindProcesses() 2219 if (match_info.GetProcessInfo().UserIDIsValid()) in FindProcesses() 2220 packet.Printf("uid:%u;", match_info.GetProcessInfo().GetUserID()); in FindProcesses() 2221 if (match_info.GetProcessInfo().GroupIDIsValid()) in FindProcesses() 2222 packet.Printf("gid:%u;", match_info.GetProcessInfo().GetGroupID()); in FindProcesses() [all …]
|
/external/llvm-project/lldb/source/Host/freebsd/ |
D | Host.cpp | 83 match_info_ptr->GetProcessInfo().GetName()))) in GetFreeBSDProcessArgs() 230 bool Host::GetProcessInfo(lldb::pid_t pid, ProcessInstanceInfo &process_info) { in GetProcessInfo() function in Host
|
/external/llvm-project/lldb/source/Host/netbsd/ |
D | HostNetBSD.cpp | 79 match_info_ptr->GetProcessInfo().GetName()))) in GetNetBSDProcessArgs() 256 bool Host::GetProcessInfo(lldb::pid_t pid, ProcessInstanceInfo &process_info) { in GetProcessInfo() function in Host
|
/external/llvm-project/lldb/source/Target/ |
D | RemoteAwarePlatform.cpp | 388 bool RemoteAwarePlatform::GetProcessInfo(lldb::pid_t pid, in GetProcessInfo() function in RemoteAwarePlatform 391 return Platform::GetProcessInfo(pid, process_info); in GetProcessInfo() 393 return m_remote_platform_sp->GetProcessInfo(pid, process_info); in GetProcessInfo()
|
D | ProcessTrace.cpp | 114 bool ProcessTrace::GetProcessInfo(ProcessInstanceInfo &info) { in GetProcessInfo() function in ProcessTrace
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | ProcessTrace.h | 69 bool GetProcessInfo(ProcessInstanceInfo &info) override;
|
D | RemoteAwarePlatform.h | 87 bool GetProcessInfo(lldb::pid_t pid, ProcessInstanceInfo &proc_info) override;
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBProcess.i | 421 process_info.GetProcessID()") GetProcessInfo; 423 GetProcessInfo();
|
/external/llvm-project/lldb/source/Plugins/Process/minidump/ |
D | ProcessMinidump.h | 86 bool GetProcessInfo(ProcessInstanceInfo &info) override;
|
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
D | NativeThreadWindows.cpp | 88 if (Host::GetProcessInfo(process.GetID(), process_info)) { in GetName()
|
D | NativeProcessWindows.cpp | 78 if (!Host::GetProcessInfo(pid, info)) { in NativeProcessWindows() 407 if (!Host::GetProcessInfo(GetDebuggedProcessId(), process_info)) { in OnDebuggerConnected()
|
/external/llvm-project/lldb/unittests/tools/lldb-server/tests/ |
D | TestClient.h | 60 const ProcessInfo &GetProcessInfo();
|
D | TestClient.cpp | 165 const llgs_tests::ProcessInfo &TestClient::GetProcessInfo() { in GetProcessInfo() function in TestClient
|
/external/llvm-project/lldb/source/Plugins/Process/elf-core/ |
D | ProcessElfCore.h | 103 bool GetProcessInfo(lldb_private::ProcessInstanceInfo &info) override;
|
/external/llvm-project/lldb/include/lldb/Host/ |
D | Host.h | 184 static bool GetProcessInfo(lldb::pid_t pid, ProcessInstanceInfo &proc_info);
|
/external/llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
D | PlatformRemoteGDBServer.h | 57 bool GetProcessInfo(lldb::pid_t pid, ProcessInstanceInfo &proc_info) override;
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBProcess.h | 396 lldb::SBProcessInfo GetProcessInfo();
|
/external/llvm-project/lldb/source/Host/windows/ |
D | Host.cpp | 165 bool Host::GetProcessInfo(lldb::pid_t pid, ProcessInstanceInfo &process_info) { in GetProcessInfo() function in Host
|
/external/llvm-project/lldb/source/Host/linux/ |
D | Host.cpp | 300 bool Host::GetProcessInfo(lldb::pid_t pid, ProcessInstanceInfo &process_info) { in GetProcessInfo() function in Host
|