Home
last modified time | relevance | path

Searched refs:VMRange (Results 1 – 6 of 6) sorted by relevance

/trueos/contrib/llvm/tools/lldb/source/Core/
HDVMRange.cpp20 VMRange::ContainsValue(const VMRange::collection& coll, lldb::addr_t value) in ContainsValue()
23 VMRange::const_iterator pos; in ContainsValue()
24 VMRange::const_iterator end = coll.end(); in ContainsValue()
32 VMRange::ContainsRange(const VMRange::collection& coll, const VMRange& range) in ContainsRange()
35 VMRange::const_iterator pos; in ContainsRange()
36 VMRange::const_iterator end = coll.end(); in ContainsRange()
44 VMRange::FindRangeIndexThatContainsValue (const VMRange::collection& coll, lldb::addr_t value) in FindRangeIndexThatContainsValue()
47 VMRange::const_iterator begin = coll.begin(); in FindRangeIndexThatContainsValue()
48 VMRange::const_iterator end = coll.end(); in FindRangeIndexThatContainsValue()
49 VMRange::const_iterator pos = std::find_if (begin, end, in_range_predicate); in FindRangeIndexThatContainsValue()
[all …]
HDSection.cpp242 VMRange range(addr, addr + m_byte_size); in Dump()
/trueos/contrib/llvm/tools/lldb/include/lldb/Core/
HDVMRange.h22 class VMRange
26 typedef std::vector<VMRange> collection;
30 VMRange() : in VMRange() function
36 VMRange(lldb::addr_t start_addr, lldb::addr_t end_addr) : in VMRange() function
42 ~VMRange() in ~VMRange()
115 Contains (const VMRange& range) const in Contains()
135 bool operator()(const VMRange& range) const in operator()
145 RangeInRangeUnaryPredicate(VMRange range) : in RangeInRangeUnaryPredicate()
149 bool operator()(const VMRange& range) const in operator()
153 const VMRange& _range;
[all …]
/trueos/lib/clang/liblldbCore/
HDMakefile76 VMRange.cpp
/trueos/contrib/llvm/tools/lldb/include/lldb/
HDlldb-forward.h252 class VMRange; variable
/trueos/contrib/llvm/tools/lldb/source/Expression/
HDDWARFExpression.cpp691VMRange addr_range(curr_base_addr + begin_addr_offset, curr_base_addr + end_addr_offset); in GetDescription()