OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:oat_class
(Results
1 - 4
of
4
) sorted by null
/art/dex2oat/
dex2oat_test.cc
342
OatFile::OatClass
oat_class
= oat_dex_file->GetOatClass(class_def_index);
local
343
EXPECT_EQ(
oat_class
.GetType(), OatClassType::kOatClassNoneCompiled);
/art/compiler/
oat_test.cc
417
const OatFile::OatClass
oat_class
= oat_dex_file->GetOatClass(i);
local
418
CHECK_EQ(mirror::Class::Status::kStatusNotReady,
oat_class
.GetStatus()) << descriptor;
420
oat_class
.GetType()) << descriptor;
424
CheckMethod(&m,
oat_class
.GetOatMethod(method_index), dex_file);
433
CheckMethod(&m,
oat_class
.GetOatMethod(method_index), dex_file);
[
all
...]
/art/oatdump/
oatdump.cc
190
const OatFile::OatClass
oat_class
= oat_dex_file->GetOatClass(class_def_index);
local
191
OatClassType type =
oat_class
.GetType();
195
WalkOatClass(
oat_class
, *dex_file, class_def_index);
206
void WalkOatClass(const OatFile::OatClass&
oat_class
,
221
WalkOatMethod(
oat_class
.GetOatMethod(class_method_idx++),
504
const OatFile::OatClass
oat_class
= oat_dex_file->GetOatClass(class_def_index);
local
506
return
oat_class
.GetOatMethod(method_index).GetQuickCode();
534
const OatFile::OatClass
oat_class
= oat_dex_file->GetOatClass(class_def_index);
local
541
AddOffsets(
oat_class
.GetOatMethod(class_method_index++));
545
AddOffsets(
oat_class
.GetOatMethod(class_method_index++))
619
const OatFile::OatClass
oat_class
= oat_dex_file.GetOatClass(class_def_index);
local
[
all
...]
/art/runtime/
class_linker.cc
2708
OatFile::OatClass
oat_class
= FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
local
2820
OatFile::OatClass
oat_class
= FindOatClass(dex_file,
local
2938
OatFile::OatClass
oat_class
= FindOatClass(dex_file, klass->GetDexClassDefIndex(),
local
[
all
...]
Completed in 861 milliseconds