Home
last modified time | relevance | path

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

/trueos/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectRegister.cpp237 const char *arg_cstr; in DoExecute() local
238 … for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx) in DoExecute()
244 if (*arg_cstr == '$') in DoExecute()
245 arg_cstr = arg_cstr+1; in DoExecute()
246 reg_info = reg_ctx->GetRegisterInfoByName(arg_cstr); in DoExecute()
255 result.AppendErrorWithFormat ("Invalid register name '%s'.\n", arg_cstr); in DoExecute()
HDCommandObjectTarget.cpp2228 const char *arg_cstr; in DoExecute() local
2229 … for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx) in DoExecute()
2232 … const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true); in DoExecute()
2251 … result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr); in DoExecute()
2353 const char *arg_cstr; in DoExecute() local
2354 … for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx) in DoExecute()
2357 … const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true); in DoExecute()
2375 … result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr); in DoExecute()
2461 const char *arg_cstr; in DoExecute() local
2462 … for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx) in DoExecute()
[all …]
/trueos/contrib/llvm/tools/lldb/include/lldb/Interpreter/
HDArgs.h203 AppendArgument (const char *arg_cstr, char quote_char = '\0');
227 InsertArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char = '\0');
247 ReplaceArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char = '\0');
305 Unshift (const char *arg_cstr, char quote_char = '\0');
/trueos/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
HDGDBRemoteCommunication.cpp655 char arg_cstr[PATH_MAX]; in StartDebugserverProcess() local
744 ::snprintf (arg_cstr, sizeof(arg_cstr), "--log-file=%s", env_debugserver_log_file); in StartDebugserverProcess()
745 debugserver_args.AppendArgument(arg_cstr); in StartDebugserverProcess()
751 ::snprintf (arg_cstr, sizeof(arg_cstr), "--log-flags=%s", env_debugserver_log_flags); in StartDebugserverProcess()
752 debugserver_args.AppendArgument(arg_cstr); in StartDebugserverProcess()
/trueos/contrib/llvm/tools/lldb/source/Interpreter/
HDArgs.cpp104 const char *arg_cstr = m_argv[i]; in Dump() local
105 if (arg_cstr) in Dump()
106 s->Printf("argv[%zi]=\"%s\"\n", i, arg_cstr); in Dump()
470 Args::Unshift (const char *arg_cstr, char quote_char) in Unshift() argument
472 m_args.push_front(arg_cstr); in Unshift()
497 Args::AppendArgument (const char *arg_cstr, char quote_char) in AppendArgument() argument
499 return InsertArgumentAtIndex (GetArgumentCount(), arg_cstr, quote_char); in AppendArgument()
503 Args::InsertArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char) in InsertArgumentAtIndex() argument
513 pos = m_args.insert(pos, arg_cstr); in InsertArgumentAtIndex()
528 Args::ReplaceArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char) in ReplaceArgumentAtIndex() argument
[all …]
/trueos/contrib/llvm/tools/lldb/tools/driver/
HDDriver.cpp917 char arg_cstr[1024]; in MainLoop() local
920 ::snprintf (arg_cstr, in MainLoop()
921 sizeof(arg_cstr), in MainLoop()
924 m_debugger.HandleCommand (arg_cstr); in MainLoop()