Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/tools/lldb-server/
Dlldb-gdbserver.cpp127 const std::string &attach_target) { in handle_attach() argument
128 assert(!attach_target.empty() && "attach_target cannot be empty"); in handle_attach()
133 const long int pid = strtol(attach_target.c_str(), &end_p, 10); in handle_attach()
137 static_cast<size_t>(end_p - attach_target.c_str()) == in handle_attach()
138 attach_target.size()) in handle_attach()
141 handle_attach_to_process_name(gdb_server, attach_target); in handle_attach()
341 std::string attach_target; in main_gdbserver() local
404 attach_target = Args.getLastArgValue(OPT_attach).str(); in main_gdbserver()
454 if (!attach_target.empty()) in main_gdbserver()
455 handle_attach(gdb_server, attach_target); in main_gdbserver()