Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/API/
H A DSBDebugger.cpp1319 StreamString value_strm; in GetInternalVariableValue() local
1320 value_sp->DumpValue(&exe_ctx, value_strm, OptionValue::eDumpOptionValue); in GetInternalVariableValue()
1321 const std::string &value_str = std::string(value_strm.GetString()); in GetInternalVariableValue()
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1742 StreamString value_strm; in PreprocessCommand() local
1744 scalar.GetValue(&value_strm, show_type); in PreprocessCommand()
1745 size_t value_string_size = value_strm.GetSize(); in PreprocessCommand()
1747 command.insert(start_backtick, std::string(value_strm.GetString())); in PreprocessCommand()