Home
last modified time | relevance | path

Searched refs:bcp_info_offset (Results 1 – 3 of 3) sorted by relevance

/art/runtime/oat/
Doat.cc192 void OatHeader::SetBcpBssInfoOffset(uint32_t bcp_info_offset) { in SetBcpBssInfoOffset() argument
193 DCHECK_GT(bcp_info_offset, sizeof(OatHeader)); in SetBcpBssInfoOffset()
197 bcp_bss_info_offset_ = bcp_info_offset; in SetBcpBssInfoOffset()
Doat.h84 void SetBcpBssInfoOffset(uint32_t bcp_info_offset);
Doat_file.cc1044 size_t bcp_info_offset = GetOatHeader().GetBcpBssInfoOffset(); in Setup() local
1046 if (bcp_info_offset != 0) { in Setup()
1048 if (bcp_info_offset < GetOatHeader().GetHeaderSize() || bcp_info_offset > Size()) { in Setup()
1050 bcp_info_offset, in Setup()
1055 const uint8_t* bcp_info_begin = Begin() + bcp_info_offset; // Jump to the BCP_info records. in Setup()