/external/lldb/include/lldb/Interpreter/ |
Args.h | 194 /// @param[in] arg_cstr 201 /// The NULL terminated C string of the copy of \a arg_cstr. 204 AppendArgument (const char *arg_cstr, char quote_char = '\0'); 213 /// Insert the argument value at index \a idx to \a arg_cstr. 218 /// @param[in] arg_cstr 225 /// The NULL terminated C string of the copy of \a arg_cstr. 228 InsertArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char = '\0'); 231 /// Replaces the argument value at index \a idx to \a arg_cstr 237 /// @param[in] arg_cstr 244 /// The NULL terminated C string of the copy of \a arg_cstr i [all...] |
/external/lldb/source/Commands/ |
CommandObjectRegister.cpp | 236 const char *arg_cstr; local 237 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx) 243 if (*arg_cstr == '$') 244 arg_cstr = arg_cstr+1; 245 reg_info = reg_ctx->GetRegisterInfoByName(arg_cstr); 254 result.AppendErrorWithFormat ("Invalid register name '%s'.\n", arg_cstr);
|
CommandObjectTarget.cpp | 2162 const char *arg_cstr; local 2287 const char *arg_cstr; local 2395 const char *arg_cstr; local 2473 const char *arg_cstr; local 3165 const char *arg_cstr = command.GetArgumentAtIndex(i); local 4076 const char *arg_cstr; local [all...] |
/external/lldb/source/Plugins/Process/gdb-remote/ |
GDBRemoteCommunication.cpp | 564 char arg_cstr[PATH_MAX]; 584 ::snprintf (arg_cstr, sizeof(arg_cstr), "--log-file=%s", env_debugserver_log_file); 585 debugserver_args.AppendArgument(arg_cstr); 591 ::snprintf (arg_cstr, sizeof(arg_cstr), "--log-flags=%s", env_debugserver_log_flags); 592 debugserver_args.AppendArgument(arg_cstr); 614 ::snprintf (arg_cstr, sizeof(arg_cstr), "--attach=%u", attach_pid); 615 debugserver_args.AppendArgument (arg_cstr); [all...] |
ProcessGDBRemote.cpp | 2498 char arg_cstr[PATH_MAX]; local [all...] |
/external/lldb/source/Interpreter/ |
Args.cpp | 105 const char *arg_cstr = m_argv[i]; local 106 if (arg_cstr) 107 s->Printf("argv[%zi]=\"%s\"\n", i, arg_cstr); 471 Args::Unshift (const char *arg_cstr, char quote_char) 473 m_args.push_front(arg_cstr); 498 Args::AppendArgument (const char *arg_cstr, char quote_char) 500 return InsertArgumentAtIndex (GetArgumentCount(), arg_cstr, quote_char); 504 Args::InsertArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char) 514 pos = m_args.insert(pos, arg_cstr); 529 Args::ReplaceArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char [all...] |
/external/lldb/tools/driver/ |
Driver.cpp | 1462 char arg_cstr[1024]; local [all...] |