Searched refs:error_strm (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | OptionValueLanguage.cpp | 53 StreamString error_strm; in SetValueFromString() local 54 error_strm.Printf("invalid language type '%s', ", value.str().c_str()); in SetValueFromString() 55 error_strm.Printf("valid values are:\n"); in SetValueFromString() 58 error_strm.Printf(" %s\n", in SetValueFromString() 61 error = Status(error_strm.GetString().str()); in SetValueFromString()
|
| H A D | OptionValueEnumeration.cpp | 68 StreamString error_strm; in SetValueFromString() local 69 error_strm.Printf("invalid enumeration value '%s'", value.str().c_str()); in SetValueFromString() 72 error_strm.Printf(", valid values are: %s", in SetValueFromString() 75 error_strm.Printf(", %s", in SetValueFromString() 79 error = Status(error_strm.GetString().str()); in SetValueFromString()
|
| H A D | OptionArgParser.cpp | 113 StreamString error_strm; in ToFormat() local 114 error_strm.Printf( in ToFormat() 119 error_strm.Printf("'%c' or ", format_char); in ToFormat() 121 error_strm.Printf("\"%s\"", FormatManager::GetFormatAsCString(f)); in ToFormat() 122 error_strm.EOL(); in ToFormat() 126 error_strm.PutCString( in ToFormat() 128 error = Status(error_strm.GetString().str()); in ToFormat()
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectSource.cpp | 300 StreamString &error_strm) { in GetSymbolContextsForAddress() argument 325 error_strm.Printf("Source information for file address 0x%" PRIx64 in GetSymbolContextsForAddress() 347 error_strm.Printf( in GetSymbolContextsForAddress() 356 error_strm.Printf("Address 0x%" PRIx64 in GetSymbolContextsForAddress() 362 error_strm.Printf("Unable to resolve address 0x%" PRIx64 ".\n", addr); 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() [all …]
|
| H A D | CommandObjectTarget.cpp | 4453 StreamString error_strm; in AddSymbolsForUUID() local 4454 error_strm.PutCString("unable to find debug symbols for UUID "); in AddSymbolsForUUID() 4455 module_spec.GetUUID().Dump(error_strm); in AddSymbolsForUUID() 4456 result.AppendError(error_strm.GetString()); in AddSymbolsForUUID() 4482 StreamString error_strm; in AddSymbolsForFile() local 4483 error_strm.PutCString( in AddSymbolsForFile() 4485 error_strm << module_spec.GetFileSpec(); in AddSymbolsForFile() 4486 result.AppendError(error_strm.GetString()); in AddSymbolsForFile()
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | TargetList.cpp | 196 StreamString error_strm; in CreateTargetInternal() local 198 error_strm.Printf( in CreateTargetInternal() 205 error_strm.PutCString(", "); in CreateTargetInternal() 206 error_strm.PutCString(platform_name); in CreateTargetInternal() 209 error_strm.Printf("), specify an architecture to disambiguate"); in CreateTargetInternal() 210 error = Status(error_strm.GetString().str()); in CreateTargetInternal()
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 2086 StreamString error_strm; in ParseEntry() local 2087 error_strm.Printf("'%s' can't be specified on its own, you must " in ParseEntry() 2090 DumpCommaSeparatedChildEntryNames(error_strm, entry_def); in ParseEntry() 2092 Status::FromErrorStringWithFormat("%s", error_strm.GetData()); in ParseEntry() 2120 StreamString error_strm; in ParseEntry() local 2122 error_strm.Printf( in ParseEntry() 2126 error_strm.Printf("invalid member '%s' in '%s'. Valid members are: ", in ParseEntry() 2128 DumpCommaSeparatedChildEntryNames(error_strm, parent); in ParseEntry() 2129 error = Status::FromErrorStringWithFormat("%s", error_strm.GetData()); in ParseEntry()
|