Searched refs:getProcFile (Results 1 – 8 of 8) sorted by relevance
/external/llvm-project/lldb/include/lldb/Host/linux/ |
D | Support.h | 19 getProcFile(::pid_t pid, ::pid_t tid, const llvm::Twine &file); 22 getProcFile(::pid_t pid, const llvm::Twine &file); 25 getProcFile(const llvm::Twine &file);
|
/external/llvm-project/lldb/source/Host/linux/ |
D | Support.cpp | 14 lldb_private::getProcFile(::pid_t pid, ::pid_t tid, const llvm::Twine &file) { in getProcFile() function in lldb_private 26 lldb_private::getProcFile(::pid_t pid, const llvm::Twine &file) { in getProcFile() function in lldb_private 36 lldb_private::getProcFile(const llvm::Twine &file) { in getProcFile() function in lldb_private
|
D | Host.cpp | 59 auto BufferOrError = getProcFile(Pid, "status"); in GetStatusInfo() 147 auto BufferOrError = getProcFile(pid, "cmdline"); in GetProcessArgs() 191 auto BufferOrError = getProcFile(pid, "environ"); in GetProcessEnviron()
|
/external/llvm-project/lldb/unittests/Host/linux/ |
D | SupportTest.cpp | 16 auto BufferOrError = getProcFile(getpid(), "maps"); in TEST() 22 auto BufferOrError = getProcFile(getpid(), llvm::get_threadid(), "comm"); in TEST()
|
/external/llvm-project/lldb/source/Plugins/Process/Linux/ |
D | NativeProcessLinux.h | 101 return getProcFile(GetID(), "auxv"); in GetAuxvData()
|
D | ProcessorTrace.cpp | 193 auto BufferOrError = getProcFile("cpuinfo"); in GetCPUType()
|
D | NativeThreadLinux.cpp | 99 auto BufferOrError = getProcFile(process.GetID(), GetID(), "comm"); in GetName()
|
D | NativeProcessLinux.cpp | 1317 auto BufferOrError = getProcFile(GetID(), "smaps"); in PopulateMemoryRegionCache() 1321 BufferOrError = getProcFile(GetID(), "maps"); in PopulateMemoryRegionCache()
|