Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Host/aix/
H A DHost.cpp85 struct psinfo psinfoData; in GetExePathAndIds() local
92 if (PsinfoBuffer->getBufferSize() < sizeof(psinfoData)) in GetExePathAndIds()
95 std::memcpy(&psinfoData, PsinfoBuffer->getBufferStart(), sizeof(psinfoData)); in GetExePathAndIds()
97 psinfoData.pr_psargs, in GetExePathAndIds()
98 strnlen(psinfoData.pr_psargs, sizeof(psinfoData.pr_psargs))); in GetExePathAndIds()
107 process_info.SetParentProcessID(psinfoData.pr_ppid); in GetExePathAndIds()
108 process_info.SetGroupID(psinfoData.pr_gid); in GetExePathAndIds()
109 process_info.SetEffectiveGroupID(psinfoData.pr_egid); in GetExePathAndIds()
110 process_info.SetUserID(psinfoData.pr_uid); in GetExePathAndIds()
111 process_info.SetEffectiveUserID(psinfoData.pr_euid); in GetExePathAndIds()
[all …]
H A DHostInfoAIX.cpp23 struct psinfo psinfoData; in GetProgramFileSpec() local
28 memcpy(&psinfoData, PsinfoBuffer->getBufferStart(), sizeof(psinfoData)); in GetProgramFileSpec()
30 psinfoData.pr_psargs, in GetProgramFileSpec()
31 strnlen(psinfoData.pr_psargs, sizeof(psinfoData.pr_psargs))); in GetProgramFileSpec()