Searched refs:attach_pid (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/lldb/tools/driver/ |
H A D | Options.td | 30 def attach_pid: Separate<["--", "-"], "attach-pid">, 35 Alias<attach_pid>,
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBTarget.cpp | 450 lldb::pid_t attach_pid = attach_info.GetProcessID(); in Attach() local 452 if (platform_sp->GetProcessInfo(attach_pid, instance_info)) { in Attach() 456 "no process found with process ID %" PRIu64, attach_pid); in Attach()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | Process.cpp | 2980 lldb::pid_t attach_pid = attach_info.GetProcessID(); in Attach() local 2982 if (attach_pid == LLDB_INVALID_PROCESS_ID) { in Attach() 3029 attach_pid = process_infos[0].GetProcessID(); in Attach() 3059 if (attach_pid != LLDB_INVALID_PROCESS_ID) { in Attach() 3060 error = WillAttachToProcessWithID(attach_pid); in Attach() 3068 error = DoAttachToProcessWithID(attach_pid, attach_info); in Attach()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | ProcessGDBRemote.cpp | 1075 lldb::pid_t attach_pid, const ProcessAttachInfo &attach_info) { in DoAttachToProcessWithID() argument 1083 if (attach_pid != LLDB_INVALID_PROCESS_ID) { in DoAttachToProcessWithID() 1090 ::snprintf(packet, sizeof(packet), "vAttach;%" PRIx64, attach_pid); in DoAttachToProcessWithID() 1091 SetID(attach_pid); in DoAttachToProcessWithID()
|