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 148 for (const uint8_t* dex_file_start = GetNextDexFileData(nullptr);
149 dex_file_start != nullptr;
150 dex_file_start = GetNextDexFileData(dex_file_start), ++i) {
151 size_t size = reinterpret_cast<const DexFile::Header*>(dex_file_start)->file_size_;
155 std::unique_ptr<const DexFile> dex(DexFile::Open(dex_file_start,
245 for (const uint8_t* dex_file_start = GetNextDexFileData(nullptr);
246 dex_file_start != dex_file.Begin();
247 dex_file_start = GetNextDexFileData(dex_file_start)) {
    [all...]
  /art/dexlayout/
dexdiag.cc 270 uint64_t dex_file_start = reinterpret_cast<uint64_t>(dex_file->Begin()); local
272 if (dex_file_start < vdex_start) {
276 << StringPrintf("%" PRIx64 " > dex start %" PRIx64 "\n", map_start, dex_file_start)
280 uint64_t start_page = (dex_file_start - vdex_start) / kPageSize;

Completed in 199 milliseconds