Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueLanguage.cpp52 StreamString error_strm; in SetValueFromString() local
53 error_strm.Printf("invalid language type '%s', ", value.str().c_str()); in SetValueFromString()
54 error_strm.Printf("valid values are:\n"); in SetValueFromString()
57 error_strm.Printf(" %s\n", in SetValueFromString()
60 error.SetErrorString(error_strm.GetString()); in SetValueFromString()
H A DOptionValueEnumeration.cpp58 StreamString error_strm; in SetValueFromString() local
59 error_strm.Printf("invalid enumeration value '%s'", value.str().c_str()); in SetValueFromString()
62 error_strm.Printf(", valid values are: %s", in SetValueFromString()
65 error_strm.Printf(", %s", in SetValueFromString()
69 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()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp300 StreamString &error_strm) { in GetSymbolContextsForAddress() argument
347 error_strm.Printf( in GetSymbolContextsForAddress()
356 error_strm.Printf("Address 0x%" PRIx64 in GetSymbolContextsForAddress()
428 StreamString error_strm; in DumpLinesInFunctions() local
430 error_strm)) in DumpLinesInFunctions()
433 error_strm.GetData()); in DumpLinesInFunctions()
465 StreamString error_strm; in DumpLinesForAddress() local
467 sc_list, error_strm)) { in DumpLinesForAddress()
468 result.AppendErrorWithFormat("%s.\n", error_strm.GetData()); in DumpLinesForAddress()
963 StreamString error_strm; in DoExecute() local
[all …]
H A DCommandObjectTarget.cpp4533 StreamString error_strm; in AddSymbolsForUUID() local
4534 error_strm.PutCString("unable to find debug symbols for UUID "); in AddSymbolsForUUID()
4535 module_spec.GetUUID().Dump(error_strm); in AddSymbolsForUUID()
4536 result.AppendError(error_strm.GetString()); in AddSymbolsForUUID()
4562 StreamString error_strm; in AddSymbolsForFile() local
4563 error_strm.PutCString( in AddSymbolsForFile()
4565 error_strm << module_spec.GetFileSpec(); in AddSymbolsForFile()
4566 result.AppendError(error_strm.GetString()); in AddSymbolsForFile()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTargetList.cpp195 StreamString error_strm; in CreateTargetInternal() local
197 error_strm.Printf( in CreateTargetInternal()
204 error_strm.PutCString(", "); in CreateTargetInternal()
205 error_strm.PutCString(platform_name); in CreateTargetInternal()
208 error_strm.Printf("), specify an architecture to disambiguate"); in CreateTargetInternal()
209 error.SetErrorString(error_strm.GetString()); in CreateTargetInternal()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp1909 StreamString error_strm; in ParseEntry() local
1910 error_strm.Printf("'%s' can't be specified on its own, you must " in ParseEntry()
1913 DumpCommaSeparatedChildEntryNames(error_strm, entry_def); in ParseEntry()
1914 error.SetErrorStringWithFormat("%s", error_strm.GetData()); in ParseEntry()
1941 StreamString error_strm; in ParseEntry() local
1943 error_strm.Printf( in ParseEntry()
1947 error_strm.Printf("invalid member '%s' in '%s'. Valid members are: ", in ParseEntry()
1949 DumpCommaSeparatedChildEntryNames(error_strm, parent); in ParseEntry()
1950 error.SetErrorStringWithFormat("%s", error_strm.GetData()); in ParseEntry()