Home
last modified time | relevance | path

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

/external/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunication.cpp564 char arg_cstr[PATH_MAX]; in StartDebugserverProcess() local
584 ::snprintf (arg_cstr, sizeof(arg_cstr), "--log-file=%s", env_debugserver_log_file); in StartDebugserverProcess()
585 debugserver_args.AppendArgument(arg_cstr); in StartDebugserverProcess()
591 ::snprintf (arg_cstr, sizeof(arg_cstr), "--log-flags=%s", env_debugserver_log_flags); in StartDebugserverProcess()
592 debugserver_args.AppendArgument(arg_cstr); in StartDebugserverProcess()
614 ::snprintf (arg_cstr, sizeof(arg_cstr), "--attach=%u", attach_pid); in StartDebugserverProcess()
615 debugserver_args.AppendArgument (arg_cstr); in StartDebugserverProcess()
DProcessGDBRemote.cpp2498 char arg_cstr[PATH_MAX]; in StartDebugserverProcess() local
2512 ::snprintf (arg_cstr, sizeof(arg_cstr), "--log-file=%s", env_debugserver_log_file); in StartDebugserverProcess()
2513 debugserver_args.AppendArgument(arg_cstr); in StartDebugserverProcess()
2519 … ::snprintf (arg_cstr, sizeof(arg_cstr), "--log-flags=%s", env_debugserver_log_flags); in StartDebugserverProcess()
2520 debugserver_args.AppendArgument(arg_cstr); in StartDebugserverProcess()
2542 ::snprintf (arg_cstr, sizeof(arg_cstr), "--attach=%u", attach_pid); in StartDebugserverProcess()
2543 debugserver_args.AppendArgument (arg_cstr); in StartDebugserverProcess()
/external/lldb/source/Commands/
DCommandObjectRegister.cpp236 const char *arg_cstr; in DoExecute() local
237 … for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx) in DoExecute()
243 if (*arg_cstr == '$') in DoExecute()
244 arg_cstr = arg_cstr+1; in DoExecute()
245 reg_info = reg_ctx->GetRegisterInfoByName(arg_cstr); in DoExecute()
254 result.AppendErrorWithFormat ("Invalid register name '%s'.\n", arg_cstr); in DoExecute()
DCommandObjectTarget.cpp2162 const char *arg_cstr; in DoExecute() local
2163 … for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx) in DoExecute()
2166 … const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true); in DoExecute()
2185 … result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr); in DoExecute()
2287 const char *arg_cstr; in DoExecute() local
2288 … for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx) in DoExecute()
2291 … const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true); in DoExecute()
2309 … result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr); in DoExecute()
2395 const char *arg_cstr; in DoExecute() local
2396 … for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx) in DoExecute()
[all …]
/external/lldb/include/lldb/Interpreter/
DArgs.h204 AppendArgument (const char *arg_cstr, char quote_char = '\0');
228 InsertArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char = '\0');
248 ReplaceArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char = '\0');
306 Unshift (const char *arg_cstr, char quote_char = '\0');
/external/lldb/source/Interpreter/
DArgs.cpp105 const char *arg_cstr = m_argv[i]; in Dump() local
106 if (arg_cstr) in Dump()
107 s->Printf("argv[%zi]=\"%s\"\n", i, arg_cstr); in Dump()
471 Args::Unshift (const char *arg_cstr, char quote_char) in Unshift() argument
473 m_args.push_front(arg_cstr); in Unshift()
498 Args::AppendArgument (const char *arg_cstr, char quote_char) in AppendArgument() argument
500 return InsertArgumentAtIndex (GetArgumentCount(), arg_cstr, quote_char); in AppendArgument()
504 Args::InsertArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char) in InsertArgumentAtIndex() argument
514 pos = m_args.insert(pos, arg_cstr); in InsertArgumentAtIndex()
529 Args::ReplaceArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char) in ReplaceArgumentAtIndex() argument
[all …]
/external/lldb/tools/driver/
DDriver.cpp1462 char arg_cstr[1024]; in MainLoop() local
1465 ::snprintf (arg_cstr, in MainLoop()
1466 sizeof(arg_cstr), in MainLoop()
1469 m_debugger.HandleCommand (arg_cstr); in MainLoop()