Lines Matching defs:attach_target
126 const std::string &attach_target) {
127 assert(!attach_target.empty() && "attach_target cannot be empty");
129 // First check if the attach_target is convertible to a long. If so, we'll use
132 const long int pid = strtol(attach_target.c_str(), &end_p, 10);
136 static_cast<size_t>(end_p - attach_target.c_str()) ==
137 attach_target.size())
140 handle_attach_to_process_name(gdb_server, attach_target);
334 std::string attach_target;
397 attach_target = Args.getLastArgValue(OPT_attach).str();
447 if (!attach_target.empty())
448 handle_attach(gdb_server, attach_target);