OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OatHeader
(Results
1 - 12
of
12
) sorted by null
/art/runtime/
oat.cc
24
const uint8_t
OatHeader
::kOatMagic[] = { 'o', 'a', 't', '\n' };
25
const uint8_t
OatHeader
::kOatVersion[] = { '0', '0', '8', '\0' };
27
OatHeader
::
OatHeader
() {
31
OatHeader
::
OatHeader
(InstructionSet instruction_set,
69
bool
OatHeader
::IsValid() const {
79
const char*
OatHeader
::GetMagic() const {
84
uint32_t
OatHeader
::GetChecksum() const {
89
void
OatHeader
::UpdateChecksum(const void* data, size_t length)
[
all
...]
oat.h
28
class PACKED(4)
OatHeader
{
33
OatHeader
();
34
OatHeader
(InstructionSet instruction_set,
104
DISALLOW_COPY_AND_ASSIGN(
OatHeader
);
oat_file.h
35
class
OatHeader
;
67
const
OatHeader
& GetOatHeader() const;
243
// Pointer to
OatHeader
.
oat_file.cc
209
oat += sizeof(
OatHeader
);
211
LOG(ERROR) << "In oat file " << GetLocation() << " found truncated
OatHeader
";
219
<< "+" << sizeof(
OatHeader
)
312
const
OatHeader
& OatFile::GetOatHeader() const {
313
return *reinterpret_cast<const
OatHeader
*>(Begin());
utils.cc
[
all
...]
/art/compiler/
elf_writer_test.cc
53
OatHeader
* dl_oat_header = reinterpret_cast<
OatHeader
*>(dl_oatdata);
oat_writer.h
35
//
OatHeader
variable length with count of D OatDexFiles
71
const
OatHeader
& GetOatHeader() const {
125
void UpdateChecksum(
OatHeader
& oat_header) const;
128
// Offset of start of OatDexFile from beginning of
OatHeader
. It is
149
void UpdateChecksum(
OatHeader
& oat_header) const;
152
// Offset of start of OatClass from beginning of
OatHeader
. It is
181
OatHeader
* oat_header_;
oat_test.cc
105
const
OatHeader
& oat_header = oat_file->GetOatHeader();
145
// it is time to update
OatHeader
::kOatVersion
146
EXPECT_EQ(64U, sizeof(
OatHeader
));
156
OatHeader
oat_header(instruction_set,
oat_writer.cc
94
// create the
OatHeader
95
oat_header_ = new
OatHeader
(compiler_driver_->GetInstructionSet(),
174
// calculate the offsets within
OatHeader
to executable code
[
all
...]
image_writer.cc
704
OatHeader
& oat_header = const_cast<
OatHeader
&>(oat_file_->GetOatHeader());
elf_writer_quick.cc
199
const
OatHeader
& oat_header = oat_writer.GetOatHeader();
/art/oatdump/
oatdump.cc
108
const
OatHeader
& oat_header = oat_file_.GetOatHeader();
[
all
...]
Completed in 416 milliseconds