Lines Matching refs:oat_file

64     /*out*/ const OatFile*& oat_file) {  in ConvertJavaArrayToDexFiles()  argument
80 oat_file = reinterpret_cast64<const OatFile*>(long_data[kOatFileIndex]); in ConvertJavaArrayToDexFiles()
91 const OatFile* oat_file, in ConvertDexFilesToJavaArray() argument
105 long_data[kOatFileIndex] = reinterpret_cast64<jlong>(oat_file); in ConvertDexFilesToJavaArray()
172 const OatFile* oat_file, in CreateCookieFromOatFileManagerResult() argument
188 jlongArray array = ConvertDexFilesToJavaArray(env, oat_file, dex_files); in CreateCookieFromOatFileManagerResult()
294 const OatFile* oat_file = nullptr; in DexFile_openInMemoryDexFilesNative() local
299 /*out*/ &oat_file, in DexFile_openInMemoryDexFilesNative()
301 return CreateCookieFromOatFileManagerResult(env, dex_files, oat_file, error_msgs); in DexFile_openInMemoryDexFilesNative()
318 const OatFile* oat_file = nullptr; in DexFile_openDexFileNative() local
323 /*out*/ &oat_file, in DexFile_openDexFileNative()
325 return CreateCookieFromOatFileManagerResult(env, dex_files, oat_file, error_msgs); in DexFile_openDexFileNative()
354 const OatFile* oat_file; in DexFile_verifyInBackgroundNative() local
355 if (!ConvertJavaArrayToDexFiles(env, cookie, dex_files, oat_file)) { in DexFile_verifyInBackgroundNative()
359 CHECK(oat_file == nullptr) << "Called verifyInBackground on a dex file backed by oat"; in DexFile_verifyInBackgroundNative()
376 const OatFile* oat_file; in DexFile_closeDexFile() local
377 if (!ConvertJavaArrayToDexFiles(env, cookie, dex_files, oat_file)) { in DexFile_closeDexFile()
412 if (all_deleted && oat_file != nullptr) { in DexFile_closeDexFile()
414 VLOG(class_linker) << "Unregistering " << oat_file; in DexFile_closeDexFile()
415 runtime->GetOatFileManager().UnRegisterAndDeleteOatFile(oat_file); in DexFile_closeDexFile()
427 const OatFile* oat_file; in DexFile_defineClassNative() local
428 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out*/ dex_files, /*out*/ oat_file)) { in DexFile_defineClassNative()
487 const OatFile* oat_file = nullptr; in DexFile_getClassNameList() local
489 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) { in DexFile_getClassNameList()
800 const OatFile* oat_file = nullptr; in DexFile_isBackedByOatFile() local
802 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) { in DexFile_isBackedByOatFile()
806 return oat_file != nullptr; in DexFile_isBackedByOatFile()
864 const OatFile* oat_file = nullptr; in DexFile_getStaticSizeOfDexFile() local
866 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) { in DexFile_getStaticSizeOfDexFile()
891 const OatFile* oat_file; in DexFile_setTrusted() local
892 if (!ConvertJavaArrayToDexFiles(env, j_cookie, dex_files, oat_file)) { in DexFile_setTrusted()