Searched defs:long_data (Results 1 - 1 of 1) sorted by relevance

/art/runtime/native/
H A Ddalvik_system_DexFile.cc61 jlong* long_data = env->GetLongArrayElements(reinterpret_cast<jlongArray>(array), local
67 oat_file = reinterpret_cast<const OatFile*>(static_cast<uintptr_t>(long_data[kOatFileIndex]));
70 dex_files.push_back(reinterpret_cast<const DexFile*>(static_cast<uintptr_t>(long_data[i])));
73 env->ReleaseLongArrayElements(reinterpret_cast<jlongArray>(array), long_data, JNI_ABORT); local
87 jlong* long_data = env->GetLongArrayElements(long_array, &is_long_data_copied); local
92 long_data[kOatFileIndex] = reinterpret_cast<uintptr_t>(oat_file);
94 long_data[kDexFileIndexStart + i] = reinterpret_cast<uintptr_t>(vec[i].get());
97 env->ReleaseLongArrayElements(long_array, long_data, 0);

Completed in 74 milliseconds