Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp196 if (!m_data.ValidOffset(m_body_offset + ctf_header.lbloff)) { in ParseHeader()
203 if (!m_data.ValidOffset(m_body_offset + ctf_header.objtoff)) { in ParseHeader()
210 if (!m_data.ValidOffset(m_body_offset + ctf_header.funcoff)) { in ParseHeader()
218 if (!m_data.ValidOffset(m_body_offset + ctf_header.typeoff)) { in ParseHeader()
225 if (!m_data.ValidOffset(m_body_offset + ctf_header.stroff)) { in ParseHeader()
234 if (!m_data.ValidOffset(str_end_offset - 1)) { in ParseHeader()
287 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/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.cpp123 if (!data.ValidOffset(offset)) in GetDIENamesAndRanges()
239 if (data.ValidOffset(offset)) { in GetDIENamesAndRanges()
H A DDWARFDebugInfo.cpp84 while (data.ValidOffset(offset)) { in ParseUnitsFor()
H A DDWARFUnit.cpp1005 assert(debug_info.ValidOffset(*offset_ptr)); in extract()
1046 dwarf.GetDWARFContext().getOrLoadAbbrevData().ValidOffset( in extract()
H A DSymbolFileDWARF.cpp3292 if (data.ValidOffset(offset)) { in GetExprListFromAtLocation()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpression.cpp407 while (m_data.ValidOffset(offset)) { in GetLocation_DW_OP_addr()
436 while (m_data.ValidOffset(offset)) { in Update_DW_OP_addr()
494 while (m_data.ValidOffset(offset)) { in ContainsThreadLocalStorage()
525 while (m_data.ValidOffset(offset)) { in LinkThreadLocalStorage()
998 while (opcodes.ValidOffset(offset)) { in Evaluate()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DArmUnwindInfo.cpp58 while (m_arm_exidx_data.ValidOffset(offset)) { in ArmUnwindInfo()
H A DDWARFCallFrameInfo.cpp621 while (m_cfi_data.ValidOffset(offset) && offset < end_offset) { in ParseFDE()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDumpDataExtractor.cpp375 for (uint32_t count = 0; DE.ValidOffset(offset) && count < item_count; in DumpDataExtractor()