OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:oat_header
(Results
1 - 4
of
4
) sorted by null
/art/compiler/
oat_test.cc
105
const OatHeader&
oat_header
= oat_file->GetOatHeader();
local
106
ASSERT_TRUE(
oat_header
.IsValid());
107
ASSERT_EQ(2U,
oat_header
.GetDexFileCount()); // core and conscrypt
108
ASSERT_EQ(42U,
oat_header
.GetImageFileLocationOatChecksum());
109
ASSERT_EQ(4096U,
oat_header
.GetImageFileLocationOatDataBegin());
110
ASSERT_EQ("lue.art",
oat_header
.GetImageFileLocation());
156
OatHeader
oat_header
(instruction_set,
161
ASSERT_TRUE(
oat_header
.IsValid());
163
char* magic = const_cast<char*>(
oat_header
.GetMagic());
165
ASSERT_FALSE(
oat_header
.IsValid())
[
all
...]
elf_writer_quick.cc
199
const OatHeader&
oat_header
= oat_writer.GetOatHeader();
local
200
CHECK(
oat_header
.IsValid());
201
uint32_t oat_data_size =
oat_header
.GetExecutableOffset();
image_writer.cc
704
OatHeader&
oat_header
= const_cast<OatHeader&>(oat_file_->GetOatHeader());
local
718
oat_header
.UpdateChecksum(patch_location, sizeof(value));
/art/oatdump/
oatdump.cc
108
const OatHeader&
oat_header
= oat_file_.GetOatHeader();
local
111
os <<
oat_header
.GetMagic() << "\n\n";
114
os << StringPrintf("0x%08x\n\n",
oat_header
.GetChecksum());
117
os <<
oat_header
.GetInstructionSet() << "\n\n";
120
os <<
oat_header
.GetDexFileCount() << "\n\n";
123
os << StringPrintf("0x%08x\n\n",
oat_header
.GetExecutableOffset());
126
os << StringPrintf("0x%08x\n\n",
oat_header
.GetImageFileLocationOatChecksum());
129
os << StringPrintf("0x%08x\n\n",
oat_header
.GetImageFileLocationOatDataBegin());
132
const std::string image_file_location(
oat_header
.GetImageFileLocation());
[
all
...]
Completed in 41 milliseconds