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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueLanguage.cpp50 StreamString error_strm; local
51 error_strm.Printf("invalid language type '%s', ", value.str().c_str());
52 error_strm.Printf("valid values are:\n");
55 error_strm.Printf(" %s\n",
58 error.SetErrorString(error_strm.GetString());
H A DOptionValueEnumeration.cpp61 StreamString error_strm; local
62 error_strm.Printf("invalid enumeration value '%s'", value.str().c_str());
65 error_strm.Printf(", valid values are: %s",
68 error_strm.Printf(", %s",
72 error.SetErrorString(error_strm.GetString());
H A DOptionArgParser.cpp97 StreamString error_strm; local
98 error_strm.Printf(
103 error_strm.Printf("'%c' or ", format_char);
105 error_strm.Printf("\"%s\"", FormatManager::GetFormatAsCString(f));
106 error_strm.EOL();
110 error_strm.PutCString(
112 error.SetErrorString(error_strm.GetString());
H A DCommandReturnObject.cpp51 Stream &error_strm = GetErrorStream(); local
52 error_strm.PutCString("error: ");
53 DumpStringToStreamWithNewline(error_strm, s, false);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp296 // count of matches. If none is found, return an error in 'error_strm'.
300 StreamString &error_strm) {
325 error_strm.Printf("Source information for file address 0x%" PRIx64
347 error_strm.Printf(
356 error_strm.Printf("Address 0x%" PRIx64
362 error_strm.Printf("Unable to resolve address 0x%" PRIx64 ".\n", addr);
430 StreamString error_strm; local
432 error_strm))
435 error_strm.GetData());
467 StreamString error_strm; local
297 GetSymbolContextsForAddress(const ModuleList &module_list, lldb::addr_t addr, SymbolContextList &sc_list, StreamString &error_strm) argument
998 StreamString error_strm; variable
[all...]
H A DCommandObjectTarget.cpp4290 StreamString error_strm; variable
4292 error_strm.PutCString("unable to find debug symbols for UUID ");
4293 module_spec.GetUUID().Dump(&error_strm); variable
4295 error_strm.PutCString(
4297 error_strm << module_spec.GetFileSpec();
4299 error_strm.PutCString(
4302 result.AppendError(error_strm.GetString());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DTargetList.cpp240 StreamString error_strm; local
242 error_strm.Printf(
248 error_strm.PutCString(", ");
249 error_strm.PutCString(the_platform_sp->GetName().GetCString());
253 error_strm.Printf(
255 error.SetErrorString(error_strm.GetString());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp1941 StreamString error_strm; local
1942 error_strm.Printf("'%s' can't be specified on its own, you must "
1945 DumpCommaSeparatedChildEntryNames(error_strm, entry_def);
1946 error.SetErrorStringWithFormat("%s", error_strm.GetData());
1973 StreamString error_strm; local
1975 error_strm.Printf(
1979 error_strm.Printf("invalid member '%s' in '%s'. Valid members are: ",
1981 DumpCommaSeparatedChildEntryNames(error_strm, parent);
1982 error.SetErrorStringWithFormat("%s", error_strm.GetData());

Completed in 309 milliseconds