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

/openbsd-current/gnu/llvm/lldb/source/Interpreter/
H A DOptionValueLanguage.cpp54 StreamString error_strm; local
55 error_strm.Printf("invalid language type '%s', ", value.str().c_str());
56 error_strm.Printf("valid values are:\n");
59 error_strm.Printf(" %s\n",
62 error.SetErrorString(error_strm.GetString());
H A DOptionValueEnumeration.cpp58 StreamString error_strm; local
59 error_strm.Printf("invalid enumeration value '%s'", value.str().c_str());
62 error_strm.Printf(", valid values are: %s",
65 error_strm.Printf(", %s",
69 error.SetErrorString(error_strm.GetString());
H A DOptionArgParser.cpp98 StreamString error_strm; local
99 error_strm.Printf(
104 error_strm.Printf("'%c' or ", format_char);
106 error_strm.Printf("\"%s\"", FormatManager::GetFormatAsCString(f));
107 error_strm.EOL();
111 error_strm.PutCString(
113 error.SetErrorString(error_strm.GetString());
/openbsd-current/gnu/llvm/lldb/source/Commands/
H A DCommandObjectSource.cpp298 // count of matches. If none is found, return an error in 'error_strm'.
302 StreamString &error_strm) {
327 error_strm.Printf("Source information for file address 0x%" PRIx64
349 error_strm.Printf(
358 error_strm.Printf("Address 0x%" PRIx64
364 error_strm.Printf("Unable to resolve address 0x%" PRIx64 ".\n", addr);
435 StreamString error_strm; local
437 error_strm))
440 error_strm.GetData());
472 StreamString error_strm; local
299 GetSymbolContextsForAddress(const ModuleList &module_list, lldb::addr_t addr, SymbolContextList &sc_list, StreamString &error_strm) argument
995 StreamString error_strm; variable
[all...]
H A DCommandObjectTarget.cpp4253 StreamString error_strm; local
4254 error_strm.PutCString("unable to find debug symbols for UUID ");
4255 module_spec.GetUUID().Dump(&error_strm);
4256 result.AppendError(error_strm.GetString());
4282 StreamString error_strm; local
4283 error_strm.PutCString(
4285 error_strm << module_spec.GetFileSpec();
4286 result.AppendError(error_strm.GetString());
/openbsd-current/gnu/llvm/lldb/source/Target/
H A DTargetList.cpp195 StreamString error_strm; local
197 error_strm.Printf(
204 error_strm.PutCString(", ");
205 error_strm.PutCString(platform_name);
208 error_strm.Printf("), specify an architecture to disambiguate");
209 error.SetErrorString(error_strm.GetString());
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DFormatEntity.cpp1920 StreamString error_strm; local
1921 error_strm.Printf("'%s' can't be specified on its own, you must "
1924 DumpCommaSeparatedChildEntryNames(error_strm, entry_def);
1925 error.SetErrorStringWithFormat("%s", error_strm.GetData());
1952 StreamString error_strm; local
1954 error_strm.Printf(
1958 error_strm.Printf("invalid member '%s' in '%s'. Valid members are: ",
1960 DumpCommaSeparatedChildEntryNames(error_strm, parent);
1961 error.SetErrorStringWithFormat("%s", error_strm.GetData());

Completed in 235 milliseconds