Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
59 error_strm.Printf(" %s\n", in SetValueFromString()
62 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()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectSource.cpp302 StreamString &error_strm) { in GetSymbolContextsForAddress() argument
327 error_strm.Printf("Source information for file address 0x%" PRIx64 in GetSymbolContextsForAddress()
349 error_strm.Printf( in GetSymbolContextsForAddress()
358 error_strm.Printf("Address 0x%" PRIx64 in GetSymbolContextsForAddress()
364 error_strm.Printf("Unable to resolve address 0x%" PRIx64 ".\n", addr); in GetSymbolContextsForAddress()
435 StreamString error_strm; in DumpLinesInFunctions() local
437 error_strm)) in DumpLinesInFunctions()
440 error_strm.GetData()); in DumpLinesInFunctions()
472 StreamString error_strm; in DumpLinesForAddress() local
474 sc_list, error_strm)) { in DumpLinesForAddress()
[all …]
H A DCommandObjectTarget.cpp4253 StreamString error_strm; in AddSymbolsForUUID() local
4254 error_strm.PutCString("unable to find debug symbols for UUID "); in AddSymbolsForUUID()
4255 module_spec.GetUUID().Dump(&error_strm); in AddSymbolsForUUID()
4256 result.AppendError(error_strm.GetString()); in AddSymbolsForUUID()
4282 StreamString error_strm; in AddSymbolsForFile() local
4283 error_strm.PutCString( in AddSymbolsForFile()
4285 error_strm << module_spec.GetFileSpec(); in AddSymbolsForFile()
4286 result.AppendError(error_strm.GetString()); in AddSymbolsForFile()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DFormatEntity.cpp1920 StreamString error_strm; in ParseEntry() local
1921 error_strm.Printf("'%s' can't be specified on its own, you must " in ParseEntry()
1924 DumpCommaSeparatedChildEntryNames(error_strm, entry_def); in ParseEntry()
1925 error.SetErrorStringWithFormat("%s", error_strm.GetData()); in ParseEntry()
1952 StreamString error_strm; in ParseEntry() local
1954 error_strm.Printf( in ParseEntry()
1958 error_strm.Printf("invalid member '%s' in '%s'. Valid members are: ", in ParseEntry()
1960 DumpCommaSeparatedChildEntryNames(error_strm, parent); in ParseEntry()
1961 error.SetErrorStringWithFormat("%s", error_strm.GetData()); in ParseEntry()