Searched refs:attach_name (Results 1 - 4 of 4) sorted by relevance

/external/lldb/examples/python/
H A Dprocess_events.py95 parser.add_option('-P', '--attach-name', type='string', dest='attach_name', metavar='PROCESSNAME', help='Specify a process to attach to by name.', default=None)
118 elif not options.attach_name is None:
120 attach_info = lldb.SBAttachInfo (options.attach_name, options.attach_wait)
167 print 'Waiting for next to process named "%s" to launch...' % (options.attach_name)
169 print 'Attaching to existing process named "%s"...' % (options.attach_name)
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp617 else if (attach_name && attach_name[0])
623 debugserver_args.AppendArgument (attach_name);
H A DProcessGDBRemote.cpp2545 else if (attach_name && attach_name[0])
2551 debugserver_args.AppendArgument (attach_name);
/external/lldb/tools/debugserver/source/
H A DRNBRemote.cpp3007 GetProcessNameFrom_vAttach (const char *&p, std::string &attach_name) argument
3025 attach_name.push_back(ch);
3138 std::string attach_name; local
3139 if (!GetProcessNameFrom_vAttach(p, attach_name))
3144 attach_pid = DNBProcessAttachWait(attach_name.c_str (), m_ctx.LaunchFlavor(), ignore_existing, NULL, 1000, err_str, sizeof(err_str), RNBRemoteShouldCancelCallback);
3150 std::string attach_name; local
3151 if (!GetProcessNameFrom_vAttach(p, attach_name))
3156 attach_pid = DNBProcessAttachWait(attach_name.c_str (), m_ctx.LaunchFlavor(), ignore_existing, NULL, 1000, err_str, sizeof(err_str), RNBRemoteShouldCancelCallback);
3161 std::string attach_name; local
3162 if (!GetProcessNameFrom_vAttach(p, attach_name))
[all...]

Completed in 312 milliseconds