Home | History | Annotate | Download | only in Commands

Lines Matching defs:error

58     { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "unwind-on-error",    'u', required_argument, NULL, 0, eArgTypeBoolean,    "Clean up program state if the expression causes a crash, or raises a signal.  Note, unlike gdb hitting a breakpoint is controlled by another option (-i)."},
68 Error
73 Error error;
82 // error.SetErrorStringWithFormat("invalid language option argument '%s'", option_arg);
92 error.SetErrorStringWithFormat("invalid all-threads value setting: \"%s\"", option_arg);
105 error.SetErrorStringWithFormat("could not convert \"%s\" to a boolean value.", option_arg);
116 error.SetErrorStringWithFormat ("invalid timeout setting \"%s\"", option_arg);
127 error.SetErrorStringWithFormat("could not convert \"%s\" to a boolean value.", option_arg);
131 error.SetErrorStringWithFormat("invalid short option character '%c'", short_option);
135 return error;
388 if (strstr(error_cstr, "error:") != error_cstr)
389 error_stream->PutCString ("error: ");
396 error_stream->PutCString ("error: unknown error\n");
407 error_stream->Printf ("error: invalid execution context for expression\n");
433 Error err (reader_sp->Initialize (CommandObjectExpression::MultiLineExpressionCallback,
486 Error error (m_option_group.NotifyOptionParsingFinished());
487 if (error.Fail())
489 result.AppendError (error.AsCString());