HomeSort by relevance Sort by last modified time
    Searched refs:error_cstr (Results 1 - 16 of 16) sorted by null

  /external/lldb/source/Expression/
ClangUtilityFunction.cpp 160 const char *error_cstr = jit_error.AsCString(); local
161 if (error_cstr && error_cstr[0])
162 error_stream.Printf ("error: %s\n", error_cstr);
ClangUserExpression.cpp 552 const char *error_cstr = jit_error.AsCString(); local
553 if (error_cstr && error_cstr[0])
554 error_stream.Printf ("error: %s\n", error_cstr);
    [all...]
  /external/lldb/source/Interpreter/
CommandReturnObject.cpp 143 const char *error_cstr = error.AsCString(); local
144 if (error_cstr == NULL)
145 error_cstr = fallback_error_cstr;
146 SetError(error_cstr);
150 CommandReturnObject::SetError (const char *error_cstr)
152 if (error_cstr)
154 AppendError (error_cstr);
CommandObject.cpp 183 const char *error_cstr = error.AsCString(); local
184 if (error_cstr)
187 result.AppendError(error_cstr);
    [all...]
  /external/lldb/scripts/Python/interface/
SBCommandReturnObject.i 67 SetError (const char *error_cstr);
  /external/lldb/source/Commands/
CommandObjectExpression.cpp 383 const char *error_cstr = result_valobj_sp->GetError().AsCString(); local
384 if (error_cstr && error_cstr[0])
386 const size_t error_cstr_len = strlen (error_cstr);
387 const bool ends_with_newline = error_cstr[error_cstr_len - 1] == '\n';
388 if (strstr(error_cstr, "error:") != error_cstr)
390 error_stream->Write(error_cstr, error_cstr_len);
CommandObjectFrame.cpp 502 const char *error_cstr = error.AsCString(NULL); local
503 if (error_cstr)
504 result.GetErrorStream().Printf("error: %s\n", error_cstr);
CommandObjectMemory.cpp 694 const char *error_cstr = error.AsCString(); local
695 if (error_cstr && error_cstr[0])
697 result.AppendError(error_cstr);
    [all...]
CommandObjectWatchpoint.cpp 1070 const char *error_cstr = error.AsCString(NULL); local
    [all...]
CommandObjectTarget.cpp 2701 const char *error_cstr = error.AsCString(); local
    [all...]
  /external/lldb/include/lldb/API/
SBCommandReturnObject.h 106 SetError (const char* error_cstr);
  /external/lldb/source/API/
SBCommandReturnObject.cpp 347 SBCommandReturnObject::SetError (const char *error_cstr)
349 if (m_opaque_ap.get() && error_cstr)
350 m_opaque_ap->SetError(error_cstr);
  /external/lldb/include/lldb/Interpreter/
CommandReturnObject.h 149 SetError (const char *error_cstr);
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ProcessKDP.cpp 1051 const char *error_cstr = error.AsCString(); local
    [all...]
  /external/lldb/source/Core/
Disassembler.cpp 1101 const char *error_cstr = error.AsCString(); local
    [all...]
  /external/lldb/tools/driver/
Driver.cpp 1721 const char *error_cstr = error.GetCString (); local
    [all...]

Completed in 152 milliseconds