Home
last modified time | relevance | path

Searched refs:m_count (Results 1 – 19 of 19) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxList.cpp122 size_t m_count = 0; member in __anon55a5c5810111::AbstractListFrontEnd
169 m_count = UINT32_MAX; in Update()
197 if (m_count < 2) in HasLoop()
248 if (m_count != UINT32_MAX) in CalculateNumChildren()
249 return m_count; in CalculateNumChildren()
252 m_count = 0; in CalculateNumChildren()
254 ++m_count; in CalculateNumChildren()
257 return m_count; in CalculateNumChildren()
317 if (m_count != UINT32_MAX) in CalculateNumChildren()
318 return m_count; in CalculateNumChildren()
[all …]
H A DLibCxxVector.cpp61 uint64_t m_count = 0; member in lldb_private::formatters::LibcxxVectorBoolSyntheticFrontEnd
185 return m_count; in CalculateNumChildren()
194 if (idx >= m_count) in GetChildAtIndex()
196 if (m_base_data_address == 0 || m_count == 0) in GetChildAtIndex()
255 m_count = size_sp->GetValueAsUnsigned(0); in Update()
256 if (!m_count) in Update()
261 m_count = 0; in Update()
266 m_count = 0; in Update()
274 if (!m_count || !m_base_data_address) in GetIndexOfChildWithName()
H A DLibCxxMap.cpp199 size_t m_count = UINT32_MAX; member in lldb_private::formatters::LibcxxStdMapSyntheticFrontEnd
218 if (m_count != UINT32_MAX) in CalculateNumChildren()
219 return m_count; in CalculateNumChildren()
243 m_count = m_item->GetValueAsUnsigned(0); in CalculateNumChildren()
244 return m_count; in CalculateNumChildren()
438 m_count = UINT32_MAX; in Update()
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DOptionGroupFormat.cpp39 m_count(default_count, default_count), m_prev_gdb_format('x'), in OptionGroupFormat()
63 if (m_count.GetDefaultValue() < UINT64_MAX) in GetDefinitions()
83 if (m_count.GetDefaultValue() == 0) { in SetOptionValue()
86 error = m_count.SetValueFromString(option_arg); in SetOptionValue()
87 if (m_count.GetCurrentValue() == 0) in SetOptionValue()
137 const bool count_enabled = m_count.GetDefaultValue() < UINT64_MAX; in SetOptionValue()
173 m_count.SetCurrentValue(count); in SetOptionValue()
174 m_count.SetOptionWasSet(); in SetOptionValue()
281 m_count.Clear(); in OptionParsingStarting()
/llvm-project-15.0.7/lldb/source/Plugins/Language/ObjC/
H A DNSIndexPath.cpp116 m_impl.m_outsourced.m_count = length_sp->GetValueAsUnsigned(0); in Update()
148 return m_outsourced.m_count; in GetNumIndexes()
176 size_t GetNumIndexes() { return m_count; } in GetNumIndexes()
207 m_count = 0; in Clear()
216 size_t m_count = 0; member
224 m_count = ((m_indexes >> 3) & 0x7); in _lengthForInlinePayload()
226 m_count = ((m_indexes >> 3) & 0x3); in _lengthForInlinePayload()
227 return m_count; in _lengthForInlinePayload()
270 m_count = 0; in Clear()
276 size_t m_count = 0; member
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectSession.cpp76 : m_start_idx(0), m_stop_idx(0), m_count(0), m_clear(false) {} in CommandOptions()
87 error = m_count.SetValueFromString(option_arg, eVarSetOperationAssign); in SetOptionValue()
115 m_count.Clear(); in OptionParsingStarting()
127 OptionValueUInt64 m_count; member in CommandObjectSessionHistory::CommandOptions
139 m_options.m_count.OptionWasSet()) { in DoExecute()
150 std::pair<bool, uint64_t> count(m_options.m_count.OptionWasSet(), in DoExecute()
151 m_options.m_count.GetCurrentValue()); in DoExecute()
H A DCommandObjectThread.cpp67 if (option_arg.getAsInteger(0, m_count)) { in SetOptionValue()
68 m_count = UINT32_MAX; in SetOptionValue()
72 m_count = UINT32_MAX; in SetOptionValue()
94 m_count = UINT32_MAX; in OptionParsingStarting()
104 uint32_t m_count; member in CommandObjectThreadBacktrace::CommandOptions
195 m_options.m_count, in DoExtendedBacktrace()
2121 m_count = count; in SetOptionValue()
2125 m_count = std::numeric_limits<decltype(m_count)>::max(); in SetOptionValue()
2192 m_count = kDefaultCount; in OptionParsingStarting()
2205 size_t m_count; member in CommandObjectTraceDumpInstructions::CommandOptions
[all …]
H A DCommandObjectPlatform.cpp599 std::string buffer(m_options.m_count, 0); in DoExecute()
602 fd, m_options.m_offset, &buffer[0], m_options.m_count, error); in DoExecute()
637 if (option_arg.getAsInteger(0, m_count)) in SetOptionValue()
650 m_count = 1; in OptionParsingStarting()
660 uint32_t m_count; member in CommandObjectPlatformFRead::CommandOptions
H A DCommandObjectMemory.cpp901 OptionGroupFindMemory() : m_count(1), m_offset(0) {} in OptionGroupFindMemory()
924 if (m_count.SetValueFromString(option_value).Fail()) in SetOptionValue()
942 m_count.Clear(); in OptionParsingStarting()
947 OptionValueUInt64 m_count; member in CommandObjectMemoryFind::OptionGroupFindMemory
1120 size_t count = m_memory_options.m_count.GetCurrentValue(); in DoExecute()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DOptionGroupFormat.h60 OptionValueUInt64 &GetCountValue() { return m_count; } in GetCountValue()
62 const OptionValueUInt64 &GetCountValue() const { return m_count; } in GetCountValue()
68 m_count.OptionWasSet(); in AnyOptionWasSet()
78 OptionValueUInt64 m_count; variable
/llvm-project-15.0.7/lldb/include/lldb/DataFormatters/
H A DDumpValueObjectOptions.h26 uint32_t m_count; member
29 if (m_count > 0)
30 return PointerDepth{m_mode, m_count - 1};
31 return PointerDepth{m_mode, m_count};
/llvm-project-15.0.7/lldb/source/Utility/
H A DTimer.cpp51 m_count.store(0, std::memory_order_release); in Category()
108 m_category.m_count++; in ~Timer()
134 i->m_count.store(0, std::memory_order_release); in ResetCategoryTimes()
144 uint64_t count = i->m_count.load(std::memory_order_acquire); in DumpCategoryTimes()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV1.h131 return m_count != count || m_num_buckets != num_buckets || in NeedsUpdate()
137 m_count = count; in UpdateSignature()
143 uint32_t m_count = 0;
H A DAppleObjCClassDescriptorV2.cpp261 m_count = extractor.GetU32_unchecked(&cursor); in Read()
336 m_count = extractor.GetU32_unchecked(&cursor); in Read()
411 for (uint32_t i = 0, e = base_method_list->m_count; i < e; ++i) { in Describe()
449 for (uint32_t i = 0, e = ivar_list.m_count; i < e; ++i) { in Describe()
H A DAppleObjCClassDescriptorV2.h143 uint32_t m_count; member
175 uint32_t m_count; member
H A DAppleObjCRuntimeV2.cpp1293 printf("RemoteNXMapTable.m_count = %u\n", m_count); in Dump()
1321 m_count = m_process->ReadUnsignedIntegerFromMemory( in ParseHeader()
1323 if (m_count) { in ParseHeader()
1334 success = m_count > 0 && m_buckets_ptr != LLDB_INVALID_ADDRESS; in ParseHeader()
1339 m_count = 0; in ParseHeader()
1453 uint32_t GetCount() const { return m_count; } in GetCount()
1463 uint32_t m_count = 0; member in RemoteNXMapTable
1477 m_count = hash_table.GetCount(); in UpdateSignature()
1491 if (m_count == hash_table.GetCount() && in NeedsUpdate()
H A DAppleObjCRuntimeV2.h126 uint32_t m_count = 0;
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DTimer.h35 std::atomic<uint64_t> m_count; variable
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp476 return m_count > 0; in CanAllowExpansion()