Home
last modified time | relevance | path

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

/external/lldb/source/Interpreter/
DOptionValueEnumeration.cpp79 StreamString error_strm; in SetValueFromCString() local
80 error_strm.Printf("invalid enumeration value '%s'", value); in SetValueFromCString()
84error_strm.Printf(", valid values are: %s", m_enumerations.GetCStringAtIndex(0)); in SetValueFromCString()
87 error_strm.Printf (", %s", m_enumerations.GetCStringAtIndex(i)); in SetValueFromCString()
90 error.SetErrorString(error_strm.GetData()); in SetValueFromCString()
DCommandReturnObject.cpp72 Stream &error_strm = GetErrorStream(); in AppendErrorWithFormat() local
73 error_strm.PutCString ("error: "); in AppendErrorWithFormat()
74 DumpStringToStreamWithNewline (error_strm, s, false); in AppendErrorWithFormat()
DArgs.cpp1109 StreamString error_strm; in StringToFormat() local
1110 error_strm.Printf ("Invalid format character or name '%s'. Valid values are:\n", s); in StringToFormat()
1115 error_strm.Printf ("'%c' or ", format_char); in StringToFormat()
1117 error_strm.Printf ("\"%s\"", FormatManager::GetFormatAsCString(f)); in StringToFormat()
1118 error_strm.EOL(); in StringToFormat()
1122 error_strm.PutCString ("An optional byte size can precede the format character.\n"); in StringToFormat()
1123 error.SetErrorString(error_strm.GetString().c_str()); in StringToFormat()
/external/lldb/source/Plugins/Process/Utility/
DInferiorCallPOSIX.cpp96 StreamFile error_strm; in InferiorCallMmap() local
113 error_strm); in InferiorCallMmap()
182 StreamFile error_strm; in InferiorCallMunmap() local
199 error_strm); in InferiorCallMunmap()
236 StreamFile error_strm; in InferiorCall() local
253 error_strm); in InferiorCall()
/external/lldb/source/Commands/
DCommandObjectSource.cpp610 StreamString error_strm; in DoExecute() local
656 … so_addr.Dump(&error_strm, NULL, Address::DumpStyleModuleWithFileAddress); in DoExecute()
658 error_strm.GetData()); in DoExecute()
DCommandObjectTarget.cpp4537 StreamString error_strm; in DoExecute() local
4540 error_strm.PutCString("unable to find debug symbols for UUID "); in DoExecute()
4541 module_spec.GetUUID().Dump (&error_strm); in DoExecute()
4545error_strm.PutCString("unable to find debug symbols for the executable file "); in DoExecute()
4546 error_strm << module_spec.GetFileSpec(); in DoExecute()
4550error_strm.PutCString("unable to find debug symbols for the current frame"); … in DoExecute()
4552 result.AppendError (error_strm.GetData()); in DoExecute()