OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:oat_file_
(Results
1 - 7
of
7
) sorted by null
/art/compiler/
image_writer.cc
85
oat_file_
= OatFile::OpenWritable(oat_file.get(), oat_location);
86
if (
oat_file_
== NULL) {
90
class_linker->RegisterOatFile(*
oat_file_
);
93
oat_file_
->GetOatHeader().GetInterpreterToInterpreterBridgeOffset();
95
oat_file_
->GetOatHeader().GetInterpreterToCompiledCodeBridgeOffset();
97
jni_dlsym_lookup_offset_ =
oat_file_
->GetOatHeader().GetJniDlsymLookupOffset();
100
oat_file_
->GetOatHeader().GetPortableResolutionTrampolineOffset();
102
oat_file_
->GetOatHeader().GetPortableToInterpreterBridgeOffset();
105
oat_file_
->GetOatHeader().GetQuickResolutionTrampolineOffset();
107
oat_file_
->GetOatHeader().GetQuickToInterpreterBridgeOffset()
[
all
...]
image_writer.h
41
: compiler_driver_(compiler_driver),
oat_file_
(NULL), image_end_(0), image_begin_(NULL),
109
DCHECK_LT(offset,
oat_file_
->Size());
186
OatFile*
oat_file_
;
member in class:art::ImageWriter
/art/runtime/gc/space/
image_space.cc
229
space->
oat_file_
.reset(space->OpenOatFile());
230
if (space->
oat_file_
.get() == NULL) {
275
CHECK(
oat_file_
.get() != NULL);
276
for (const OatFile::OatDexFile* oat_dex_file :
oat_file_
->GetOatDexFiles()) {
285
<<
oat_file_
->GetLocation() << " and dex file " << dex_file_location
295
CHECK(
oat_file_
.get() != NULL);
296
return *
oat_file_
.release();
image_space.h
107
UniquePtr<OatFile>
oat_file_
;
member in class:art::gc::space::ImageSpace
/art/runtime/
oat_file.cc
364
:
oat_file_
(oat_file),
384
const byte* oat_class_pointer =
oat_file_
->Begin() + oat_class_offset;
385
CHECK_LT(oat_class_pointer,
oat_file_
->End()) <<
oat_file_
->GetLocation();
389
CHECK_LT(methods_pointer,
oat_file_
->End()) <<
oat_file_
->GetLocation();
391
return new OatClass(
oat_file_
,
399
:
oat_file_
(oat_file), status_(status), methods_pointer_(methods_pointer) {}
410
oat_file_
->Begin(),
oat_file.h
160
const OatFile*
oat_file_
;
member in class:art::OatFile::OatClass
197
const OatFile*
oat_file_
;
member in class:art::OatFile::OatDexFile
/art/oatdump/
oatdump.cc
101
oat_file_
(oat_file),
103
disassembler_(Disassembler::Create(
oat_file_
.GetOatHeader().GetInstructionSet())) {
108
const OatHeader& oat_header =
oat_file_
.GetOatHeader();
140
os << reinterpret_cast<const void*>(
oat_file_
.Begin()) << "\n\n";
143
os << reinterpret_cast<const void*>(
oat_file_
.End()) << "\n\n";
155
if (reinterpret_cast<const byte*>(oat_data) <
oat_file_
.Begin() ||
156
reinterpret_cast<const byte*>(oat_data) >
oat_file_
.End()) {
160
reinterpret_cast<size_t>(
oat_file_
.Begin());
169
return
oat_file_
.GetOatHeader().GetInstructionSet();
230
offsets_.insert(static_cast<uint32_t>(
oat_file_
.Size()))
657
const OatFile&
oat_file_
;
member in class:art::OatDumper
[
all
...]
Completed in 188 milliseconds