Home
last modified time | relevance | path

Searched refs:ValidOffset (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugArangeSet.cpp34 assert(data.ValidOffset(*offset_ptr)); in extract()
83 if (!data.ValidOffset(m_offset + sizeof(m_header.length) + m_header.length - in extract()
H A DDWARFDebugAranges.cpp41 while (debug_aranges_data.ValidOffset(offset)) { in extract()
H A DDWARFDebugInfoEntry.cpp137 if (!data.ValidOffset(offset)) in GetDIENamesAndRanges()
243 if (data.ValidOffset(offset)) { in GetDIENamesAndRanges()
H A DDWARFDebugInfo.cpp84 while (data.ValidOffset(offset)) { in ParseUnitsFor()
H A DDWARFUnit.cpp931 assert(debug_info.ValidOffset(*offset_ptr)); in extract()
972 dwarf.GetDWARFContext().getOrLoadAbbrevData().ValidOffset( in extract()
H A DSymbolFileDWARF.cpp3385 if (data.ValidOffset(offset)) { in GetExprListFromAtLocation()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp195 if (!m_data.ValidOffset(m_body_offset + ctf_header.lbloff)) { in ParseHeader()
202 if (!m_data.ValidOffset(m_body_offset + ctf_header.objtoff)) { in ParseHeader()
209 if (!m_data.ValidOffset(m_body_offset + ctf_header.funcoff)) { in ParseHeader()
217 if (!m_data.ValidOffset(m_body_offset + ctf_header.typeoff)) { in ParseHeader()
224 if (!m_data.ValidOffset(m_body_offset + ctf_header.stroff)) { in ParseHeader()
233 if (!m_data.ValidOffset(str_end_offset - 1)) { in ParseHeader()
286 if (!m_data.ValidOffset(offset)) in ReadString()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataEncoder.h285 bool ValidOffset(uint32_t offset) const { return offset < GetByteSize(); }
287 bool ValidOffset(uint32_t offset) const { return offset < GetByteSize(); } ValidOffset() function
H A DDataExtractor.h954 bool ValidOffset(lldb::offset_t offset) const { in ValidOffset() function
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DDataEncoder.cpp51 if (ValidOffset(offset)) { in PutU8()
H A DDataExtractor.cpp162 if (data.ValidOffset(offset)) { in DataExtractor()
261 if (data.ValidOffset(data_offset)) { in SetData()
915 ValidOffset(offset) && offset < end_offset; ++count) { in PutToLog()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpression.cpp349 while (m_data.ValidOffset(offset)) { in GetLocation_DW_OP_addr()
375 while (m_data.ValidOffset(offset)) { in Update_DW_OP_addr()
433 while (m_data.ValidOffset(offset)) { in ContainsThreadLocalStorage()
464 while (m_data.ValidOffset(offset)) { in LinkThreadLocalStorage()
873 while (opcodes.ValidOffset(offset)) { in Evaluate()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DArmUnwindInfo.cpp58 while (m_arm_exidx_data.ValidOffset(offset)) { in ArmUnwindInfo()
H A DDWARFCallFrameInfo.cpp637 while (m_cfi_data.ValidOffset(offset) && offset < end_offset) { in FDEToUnwindPlan()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDumpDataExtractor.cpp374 for (uint32_t count = 0; DE.ValidOffset(offset) && count < item_count; in DumpDataExtractor()