Home
last modified time | relevance | path

Searched refs:attach_pid (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/tools/driver/
H A DOptions.td28 def attach_pid: Separate<["--", "-"], "attach-pid">,
33 Alias<attach_pid>,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp2992 lldb::pid_t attach_pid = attach_info.GetProcessID(); in Attach() local
2994 if (attach_pid == LLDB_INVALID_PROCESS_ID) { in Attach()
3041 attach_pid = process_infos.GetProcessIDAtIndex(0); in Attach()
3072 if (attach_pid != LLDB_INVALID_PROCESS_ID) { in Attach()
3073 error = WillAttachToProcessWithID(attach_pid); in Attach()
3081 error = DoAttachToProcessWithID(attach_pid, attach_info); in Attach()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBTarget.cpp433 lldb::pid_t attach_pid = attach_info.GetProcessID(); in Attach() local
435 if (platform_sp->GetProcessInfo(attach_pid, instance_info)) { in Attach()
439 "no process found with process ID %" PRIu64, attach_pid); in Attach()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1218 lldb::pid_t attach_pid, const ProcessAttachInfo &attach_info) { in DoAttachToProcessWithID() argument
1227 if (attach_pid != LLDB_INVALID_PROCESS_ID) { in DoAttachToProcessWithID()
1234 ::snprintf(packet, sizeof(packet), "vAttach;%" PRIx64, attach_pid); in DoAttachToProcessWithID()
1235 SetID(attach_pid); in DoAttachToProcessWithID()