Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Interpreter/
DOptionValueLanguage.cpp50 StreamString error_strm; in SetValueFromString() local
51 error_strm.Printf("invalid language type '%s', ", value.str().c_str()); in SetValueFromString()
52 error_strm.Printf("valid values are:\n"); in SetValueFromString()
55 error_strm.Printf(" %s\n", in SetValueFromString()
58 error.SetErrorString(error_strm.GetString()); in SetValueFromString()
DOptionArgParser.cpp97 StreamString error_strm; in ToFormat() local
98 error_strm.Printf( in ToFormat()
103 error_strm.Printf("'%c' or ", format_char); in ToFormat()
105 error_strm.Printf("\"%s\"", FormatManager::GetFormatAsCString(f)); in ToFormat()
106 error_strm.EOL(); in ToFormat()
110 error_strm.PutCString( in ToFormat()
112 error.SetErrorString(error_strm.GetString()); in ToFormat()
DOptionValueEnumeration.cpp61 StreamString error_strm; in SetValueFromString() local
62 error_strm.Printf("invalid enumeration value '%s'", value.str().c_str()); in SetValueFromString()
65 error_strm.Printf(", valid values are: %s", in SetValueFromString()
68 error_strm.Printf(", %s", in SetValueFromString()
72 error.SetErrorString(error_strm.GetString()); in SetValueFromString()
/external/llvm-project/lldb/source/Commands/
DCommandObjectSource.cpp301 StreamString &error_strm) { in GetSymbolContextsForAddress() argument
326 error_strm.Printf("Source information for file address 0x%" PRIx64 in GetSymbolContextsForAddress()
348 error_strm.Printf( in GetSymbolContextsForAddress()
357 error_strm.Printf("Address 0x%" PRIx64 in GetSymbolContextsForAddress()
363 error_strm.Printf("Unable to resolve address 0x%" PRIx64 ".\n", addr); in GetSymbolContextsForAddress()
431 StreamString error_strm; in DumpLinesInFunctions() local
433 error_strm)) in DumpLinesInFunctions()
436 error_strm.GetData()); in DumpLinesInFunctions()
468 StreamString error_strm; in DumpLinesForAddress() local
470 sc_list, error_strm)) { in DumpLinesForAddress()
[all …]
DCommandObjectTarget.cpp4327 StreamString error_strm; in DoExecute() local
4329 error_strm.PutCString("unable to find debug symbols for UUID "); in DoExecute()
4330 module_spec.GetUUID().Dump(&error_strm); in DoExecute()
4332 error_strm.PutCString( in DoExecute()
4334 error_strm << module_spec.GetFileSpec(); in DoExecute()
4336 error_strm.PutCString( in DoExecute()
4339 result.AppendError(error_strm.GetString()); in DoExecute()
/external/llvm-project/lldb/source/Target/
DTargetList.cpp225 StreamString error_strm; in CreateTargetInternal() local
227 error_strm.Printf( in CreateTargetInternal()
233 error_strm.PutCString(", "); in CreateTargetInternal()
234 error_strm.PutCString(the_platform_sp->GetName().GetCString()); in CreateTargetInternal()
238 error_strm.Printf("), specify an architecture to disambiguate"); in CreateTargetInternal()
239 error.SetErrorString(error_strm.GetString()); in CreateTargetInternal()
/external/llvm-project/lldb/source/Core/
DFormatEntity.cpp1948 StreamString error_strm; in ParseEntry() local
1949 error_strm.Printf("'%s' can't be specified on its own, you must " in ParseEntry()
1952 DumpCommaSeparatedChildEntryNames(error_strm, entry_def); in ParseEntry()
1953 error.SetErrorStringWithFormat("%s", error_strm.GetData()); in ParseEntry()
1980 StreamString error_strm; in ParseEntry() local
1982 error_strm.Printf( in ParseEntry()
1986 error_strm.Printf("invalid member '%s' in '%s'. Valid members are: ", in ParseEntry()
1988 DumpCommaSeparatedChildEntryNames(error_strm, parent); in ParseEntry()
1989 error.SetErrorStringWithFormat("%s", error_strm.GetData()); in ParseEntry()