Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueLanguage.cpp54 StreamString error_strm; in SetValueFromString() local
55 error_strm.Printf("invalid language type '%s', ", value.str().c_str()); in SetValueFromString()
56 error_strm.Printf("valid values are:\n"); in SetValueFromString()
58 error_strm.Printf("%s%s%s", " ", in SetValueFromString()
61 error.SetErrorString(error_strm.GetString()); in SetValueFromString()
H A DOptionArgParser.cpp98 StreamString error_strm; in ToFormat() local
99 error_strm.Printf( in ToFormat()
104 error_strm.Printf("'%c' or ", format_char); in ToFormat()
106 error_strm.Printf("\"%s\"", FormatManager::GetFormatAsCString(f)); in ToFormat()
107 error_strm.EOL(); in ToFormat()
111 error_strm.PutCString( in ToFormat()
113 error.SetErrorString(error_strm.GetString()); in ToFormat()
H A DOptionValueEnumeration.cpp62 StreamString error_strm; in SetValueFromString() local
63 error_strm.Printf("invalid enumeration value '%s'", value.str().c_str()); in SetValueFromString()
66 error_strm.Printf(", valid values are: %s", in SetValueFromString()
69 error_strm.Printf(", %s", in SetValueFromString()
73 error.SetErrorString(error_strm.GetString()); in SetValueFromString()
H A DCommandReturnObject.cpp53 Stream &error_strm = GetErrorStream(); in AppendErrorWithFormat() local
54 error_strm.PutCString("error: "); in AppendErrorWithFormat()
55 DumpStringToStreamWithNewline(error_strm, s, false); in AppendErrorWithFormat()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectSource.cpp329 StreamString &error_strm) { in GetSymbolContextsForAddress() argument
377 error_strm.Printf( in GetSymbolContextsForAddress()
386 error_strm.Printf("Address 0x%" PRIx64 in GetSymbolContextsForAddress()
459 StreamString error_strm; in DumpLinesInFunctions() local
461 error_strm)) in DumpLinesInFunctions()
464 error_strm.GetData()); in DumpLinesInFunctions()
496 StreamString error_strm; in DumpLinesForAddress() local
498 sc_list, error_strm)) { in DumpLinesForAddress()
499 result.AppendErrorWithFormat("%s.\n", error_strm.GetData()); in DumpLinesForAddress()
1044 StreamString error_strm; in DoExecute() local
[all …]
H A DCommandObjectTarget.cpp4396 StreamString error_strm; in DoExecute() local
4398 error_strm.PutCString("unable to find debug symbols for UUID "); in DoExecute()
4399 module_spec.GetUUID().Dump(&error_strm); in DoExecute()
4401 error_strm.PutCString( in DoExecute()
4403 error_strm << module_spec.GetFileSpec(); in DoExecute()
4405 error_strm.PutCString( in DoExecute()
4408 result.AppendError(error_strm.GetString()); in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DTargetList.cpp245 StreamString error_strm; in CreateTargetInternal() local
247 error_strm.Printf( in CreateTargetInternal()
253 error_strm.PutCString(", "); in CreateTargetInternal()
254 error_strm.PutCString(the_platform_sp->GetName().GetCString()); in CreateTargetInternal()
258 error_strm.Printf( in CreateTargetInternal()
260 error.SetErrorString(error_strm.GetString()); in CreateTargetInternal()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DFormatEntity.cpp1927 StreamString error_strm; in ParseEntry() local
1928 error_strm.Printf("'%s' can't be specified on its own, you must " in ParseEntry()
1931 DumpCommaSeparatedChildEntryNames(error_strm, entry_def); in ParseEntry()
1932 error.SetErrorStringWithFormat("%s", error_strm.GetData()); in ParseEntry()
1959 StreamString error_strm; in ParseEntry() local
1961 error_strm.Printf( in ParseEntry()
1965 error_strm.Printf("invalid member '%s' in '%s'. Valid members are: ", in ParseEntry()
1967 DumpCommaSeparatedChildEntryNames(error_strm, parent); in ParseEntry()
1968 error.SetErrorStringWithFormat("%s", error_strm.GetData()); in ParseEntry()