OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:oat_dex_files_
(Results
1 - 5
of
5
) sorted by null
/art/runtime/
oat_file.cc
124
STLDeleteValues(&
oat_dex_files_
);
303
oat_dex_files_
.Put(dex_file_location, new OatDexFile(this,
329
Table::const_iterator it =
oat_dex_files_
.find(dex_location);
330
if (it !=
oat_dex_files_
.end()) {
342
for (Table::const_iterator it =
oat_dex_files_
.begin(); it !=
oat_dex_files_
.end(); ++it) {
353
for (Table::const_iterator it =
oat_dex_files_
.begin(); it !=
oat_dex_files_
.end(); ++it) {
oat_file.h
259
Table
oat_dex_files_
;
member in class:art::OatFile
/art/compiler/
oat_writer.cc
83
CHECK_EQ(dex_files_->size(),
oat_dex_files_
.size());
89
STLDeleteElements(&
oat_dex_files_
);
111
oat_dex_files_
.push_back(oat_dex_file);
126
oat_dex_files_
[i]->dex_file_offset_ = offset;
142
oat_dex_files_
[i]->methods_offsets_[class_def_index] = offset;
168
oat_dex_files_
[i]->UpdateChecksum(*oat_header_);
510
for (size_t i = 0; i !=
oat_dex_files_
.size(); ++i) {
511
if (!
oat_dex_files_
[i]->Write(this, out, file_offset)) {
516
for (size_t i = 0; i !=
oat_dex_files_
.size(); ++i) {
517
uint32_t expected_offset = file_offset +
oat_dex_files_
[i]->dex_file_offset_
[
all
...]
oat_writer.h
182
std::vector<OatDexFile*>
oat_dex_files_
;
member in class:art::OatWriter
/art/oatdump/
oatdump.cc
102
oat_dex_files_
(oat_file.GetOatDexFiles()),
147
for (size_t i = 0; i <
oat_dex_files_
.size(); i++) {
148
const OatFile::OatDexFile* oat_dex_file =
oat_dex_files_
[i];
174
for (size_t i = 0; i <
oat_dex_files_
.size(); i++) {
175
const OatFile::OatDexFile* oat_dex_file =
oat_dex_files_
[i];
199
for (size_t i = 0; i <
oat_dex_files_
.size(); i++) {
200
const OatFile::OatDexFile* oat_dex_file =
oat_dex_files_
[i];
658
std::vector<const OatFile::OatDexFile*>
oat_dex_files_
;
member in class:art::OatDumper
[
all
...]
Completed in 36 milliseconds