Home
last modified time | relevance | path

Searched refs:value_strm (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBDebugger.cpp1346 StreamString value_strm; in GetInternalVariableValue() local
1347 value_sp->DumpValue(&exe_ctx, value_strm, OptionValue::eDumpOptionValue); in GetInternalVariableValue()
1348 const std::string &value_str = std::string(value_strm.GetString()); in GetInternalVariableValue()
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1563 StreamString value_strm; in PreprocessCommand() local
1565 scalar.GetValue(&value_strm, show_type); in PreprocessCommand()
1566 size_t value_string_size = value_strm.GetSize(); in PreprocessCommand()
1568 command.insert(start_backtick, std::string(value_strm.GetString())); in PreprocessCommand()