• Home
  • Raw
  • Download

Lines Matching refs:m_format_options

312         m_format_options (eFormatBytesWithASCII, 1, 8),  in CommandObjectMemoryRead()
347 m_option_group.Append (&m_format_options, in CommandObjectMemoryRead()
350 m_option_group.Append (&m_format_options, in CommandObjectMemoryRead()
354 m_option_group.Append (&m_format_options, in CommandObjectMemoryRead()
564 m_format_options.GetByteSizeValue() = clang_ast_type.GetByteSize(); in DoExecute()
566 if (m_format_options.GetByteSizeValue() == 0) in DoExecute()
574 if (!m_format_options.GetCountValue().OptionWasSet()) in DoExecute()
575 m_format_options.GetCountValue() = 1; in DoExecute()
579 error = m_memory_options.FinalizeSettings (target, m_format_options); in DoExecute()
599 if (!m_format_options.AnyOptionWasSet() && in DoExecute()
604 m_format_options = m_prev_format_options; in DoExecute()
611 size_t item_count = m_format_options.GetCountValue().GetCurrentValue(); in DoExecute()
612 size_t item_byte_size = m_format_options.GetByteSizeValue().GetCurrentValue(); in DoExecute()
649 else if (m_format_options.GetCountValue().OptionWasSet()) in DoExecute()
675 if (m_format_options.GetFormatValue().OptionWasSet() == false) in DoExecute()
676 m_format_options.GetFormatValue().SetCurrentValue(eFormatDefault); in DoExecute()
678 … bytes_read = clang_ast_type.GetByteSize() * m_format_options.GetCountValue().GetCurrentValue(); in DoExecute()
680 else if (m_format_options.GetFormatValue().GetCurrentValue() != eFormatCString) in DoExecute()
713 … if (m_format_options.GetByteSizeValue().OptionWasSet() && !m_format_options.HasGDBFormat()) in DoExecute()
714 item_byte_size = m_format_options.GetByteSizeValue().GetCurrentValue(); in DoExecute()
717 if (!m_format_options.GetCountValue().OptionWasSet()) in DoExecute()
759 m_prev_format_options = m_format_options; in DoExecute()
833 Format format = m_format_options.GetFormat(); in DoExecute()
860 Format format = m_format_options.GetFormat(); in DoExecute()
891 OptionGroupFormat m_format_options; member in CommandObjectMemoryRead
1000 m_format_options (eFormatBytes, 1, UINT64_MAX), in CommandObjectMemoryWrite()
1026 … m_option_group.Append (&m_format_options, OptionGroupFormat::OPTION_GROUP_FORMAT, LLDB_OPT_SET_1); in CommandObjectMemoryWrite()
1027 …m_option_group.Append (&m_format_options, OptionGroupFormat::OPTION_GROUP_SIZE , LLDB_OPT_SET_1|L… in CommandObjectMemoryWrite()
1100 OptionValueUInt64 &byte_size_value = m_format_options.GetByteSizeValue(); in DoExecute()
1159 if (m_format_options.GetFormat() == eFormatPointer) in DoExecute()
1174 switch (m_format_options.GetFormat()) in DoExecute()
1264 if (m_format_options.GetFormat() == eFormatCString) in DoExecute()
1349 OptionGroupFormat m_format_options; member in CommandObjectMemoryWrite