Home
last modified time | relevance | path

Searched refs:OptionValueUInt64 (Results 1 – 20 of 20) sorted by relevance

/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupFormat.h56 OptionValueUInt64 &GetByteSizeValue() { return m_byte_size; } in GetByteSizeValue()
58 const OptionValueUInt64 &GetByteSizeValue() const { return m_byte_size; } in GetByteSizeValue()
60 OptionValueUInt64 &GetCountValue() { return m_count; } in GetCountValue()
62 const OptionValueUInt64 &GetCountValue() const { return m_count; } in GetCountValue()
77 OptionValueUInt64 m_byte_size;
78 OptionValueUInt64 m_count;
H A DOptionValueUInt64.h17 class OptionValueUInt64 : public Cloneable<OptionValueUInt64, OptionValue> {
19 OptionValueUInt64() = default;
21 OptionValueUInt64(uint64_t value) in OptionValueUInt64() function
24 OptionValueUInt64(uint64_t current_value, uint64_t default_value) in OptionValueUInt64() function
27 ~OptionValueUInt64() override = default;
H A DOptionGroupUInt64.h37 OptionValueUInt64 &GetOptionValue() { return m_value; } in GetOptionValue()
39 const OptionValueUInt64 &GetOptionValue() const { return m_value; } in GetOptionValue()
42 OptionValueUInt64 m_value;
H A DOptionGroupWatchpoint.h45 OptionValueUInt64 watch_size;
H A DOptionValue.h243 OptionValueUInt64 *GetAsUInt64();
244 const OptionValueUInt64 *GetAsUInt64() const;
H A DOptionValueProperties.h117 OptionValueUInt64 *GetPropertyAtIndexAsOptionValueUInt64(
/llvm-project/lldb/source/Interpreter/
H A DOptionValueUInt64.cpp1 //===-- OptionValueUInt64.cpp ---------------------------------------------===//
9 #include "lldb/Interpreter/OptionValueUInt64.h"
16 lldb::OptionValueSP OptionValueUInt64::Create(llvm::StringRef value_str, in Create()
18 lldb::OptionValueSP value_sp(new OptionValueUInt64()); in Create()
25 void OptionValueUInt64::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()
36 Status OptionValueUInt64::SetValueFromString(llvm::StringRef value_ref, in SetValueFromString()
H A DOptionValue.cpp247 OptionValueUInt64 *OptionValue::GetAsUInt64() { in GetAsString()
249 return static_cast<OptionValueUInt64 *>(this); in GetAsUInt64()
253 const OptionValueUInt64 *OptionValue::GetAsUInt64() const { in GetAsUInt64()
255 return static_cast<const OptionValueUInt64 *>(this); in GetAsUInt64()
431 if (const OptionValueUInt64 *option_value = GetAsUInt64()) in GetUInt64Value()
438 if (OptionValueUInt64 *option_value = GetAsUInt64()) { in SetUInt64Value()
559 value_sp = std::make_shared<OptionValueUInt64>(); in CreateValueFromCStringForTypeMask()
H A DCMakeLists.txt50 OptionValueUInt64.cpp
H A DProperty.cpp201 m_value_sp = std::make_shared<OptionValueUInt64>( in Property()
H A DOptionValueProperties.cpp271 OptionValueUInt64 *OptionValueProperties::GetPropertyAtIndexAsOptionValueUInt64( in GetPropertyAtIndexAsOptionValueUInt64()
/llvm-project/lldb/source/Commands/
H A DCommandObjectSession.cpp10 #include "lldb/Interpreter/OptionValueUInt64.h"
116 OptionValueUInt64 m_start_idx;
117 OptionValueUInt64 m_stop_idx;
118 OptionValueUInt64 m_count;
H A DCommandObjectMemory.cpp113 OptionValueUInt64 &byte_size_value = format_options.GetByteSizeValue(); in FinalizeSettings()
114 OptionValueUInt64 &count_value = format_options.GetCountValue(); in FinalizeSettings()
276 OptionValueUInt64 m_num_per_line;
280 OptionValueUInt64 m_offset;
938 OptionValueUInt64 m_count;
939 OptionValueUInt64 m_offset;
1267 OptionValueUInt64 &byte_size_value = m_format_options.GetByteSizeValue(); in DoExecute()
H A DCommandObjectRegister.cpp20 #include "lldb/Interpreter/OptionValueUInt64.h"
250 OptionValueSP value_sp(OptionValueUInt64::Create(option_value, error)); in SetOptionValue()
H A DCommandObjectLog.cpp16 #include "lldb/Interpreter/OptionValueUInt64.h"
151 OptionValueUInt64 buffer_size;
H A DCommandObjectBreakpoint.cpp23 #include "lldb/Interpreter/OptionValueUInt64.h"
1589 OptionValueUInt64 m_breakpoint;
/llvm-project/llvm/utils/gn/secondary/lldb/source/Interpreter/
H A DBUILD.gn72 "OptionValueUInt64.cpp",
/llvm-project/lldb/source/Core/
H A DDisassembler.cpp25 #include "lldb/Interpreter/OptionValueUInt64.h"
758 data_value_sp = std::make_shared<OptionValueUInt64>(0, 0); in ReadArray()
853 value_sp = std::make_shared<OptionValueUInt64>(0, 0); in ReadDictionary()
H A DDebugger.cpp936 OptionValueUInt64 *term_width = in Debugger()
941 OptionValueUInt64 *term_height = in Debugger()
/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h159 class OptionValueUInt64; variable