HomeSort by relevance Sort by last modified time
    Searched refs:dex_file_start (Results 1 - 2 of 2) sorted by null

  /art/runtime/
vdex_file.cc 144 for (const uint8_t* dex_file_start = GetNextDexFileData(nullptr);
145 dex_file_start != nullptr;
146 dex_file_start = GetNextDexFileData(dex_file_start), ++i) {
147 size_t size = reinterpret_cast<const DexFile::Header*>(dex_file_start)->file_size_;
151 std::unique_ptr<const DexFile> dex(DexFile::Open(dex_file_start,
  /art/dexlayout/
dexdiag.cc 268 uint64_t dex_file_start = reinterpret_cast<uint64_t>(dex_file->Begin()); local
270 if (dex_file_start < vdex_start) {
274 << StringPrintf("%" PRIx64 " > dex start %" PRIx64 "\n", map_start, dex_file_start)
278 uint64_t start_page = (dex_file_start - vdex_start) / kPageSize;

Completed in 140 milliseconds