Lines Matching refs:oat_file

66     /*out*/ const OatFile*& oat_file) {  in ConvertJavaArrayToDexFiles()  argument
82 oat_file = reinterpret_cast64<const OatFile*>(long_data[kOatFileIndex]); in ConvertJavaArrayToDexFiles()
93 const OatFile* oat_file, in ConvertDexFilesToJavaArray() argument
107 long_data[kOatFileIndex] = reinterpret_cast64<jlong>(oat_file); in ConvertDexFilesToJavaArray()
174 const OatFile* oat_file, in CreateCookieFromOatFileManagerResult() argument
190 jlongArray array = ConvertDexFilesToJavaArray(env, oat_file, dex_files); in CreateCookieFromOatFileManagerResult()
296 const OatFile* oat_file = nullptr; in DexFile_openInMemoryDexFilesNative() local
301 /*out*/ &oat_file, in DexFile_openInMemoryDexFilesNative()
303 return CreateCookieFromOatFileManagerResult(env, dex_files, oat_file, error_msgs); in DexFile_openInMemoryDexFilesNative()
320 const OatFile* oat_file = nullptr; in DexFile_openDexFileNative() local
325 /*out*/ &oat_file, in DexFile_openDexFileNative()
327 return CreateCookieFromOatFileManagerResult(env, dex_files, oat_file, error_msgs); in DexFile_openDexFileNative()
339 const OatFile* oat_file; in DexFile_verifyInBackgroundNative() local
340 if (!ConvertJavaArrayToDexFiles(env, cookie, dex_files, oat_file)) { in DexFile_verifyInBackgroundNative()
344 CHECK(oat_file == nullptr) << "Called verifyInBackground on a dex file backed by oat"; in DexFile_verifyInBackgroundNative()
354 const OatFile* oat_file; in DexFile_closeDexFile() local
355 if (!ConvertJavaArrayToDexFiles(env, cookie, dex_files, oat_file)) { in DexFile_closeDexFile()
390 if (all_deleted && oat_file != nullptr) { in DexFile_closeDexFile()
392 VLOG(class_linker) << "Unregistering " << oat_file; in DexFile_closeDexFile()
393 runtime->GetOatFileManager().UnRegisterAndDeleteOatFile(oat_file); in DexFile_closeDexFile()
405 const OatFile* oat_file; in DexFile_defineClassNative() local
406 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out*/ dex_files, /*out*/ oat_file)) { in DexFile_defineClassNative()
465 const OatFile* oat_file = nullptr; in DexFile_getClassNameList() local
467 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) { in DexFile_getClassNameList()
787 const OatFile* oat_file = nullptr; in DexFile_isBackedByOatFile() local
789 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) { in DexFile_isBackedByOatFile()
793 return oat_file != nullptr; in DexFile_isBackedByOatFile()
824 const OatFile* oat_file = space->GetOatFile(); in DexFile_getDexFileOutputPaths() local
825 if (oat_file != nullptr) { in DexFile_getDexFileOutputPaths()
826 const std::vector<const OatDexFile*>& oat_dex_files = oat_file->GetOatDexFiles(); in DexFile_getDexFileOutputPaths()
830 oat_filename = GetSystemImageFilename(oat_file->GetLocation().c_str(), in DexFile_getDexFileOutputPaths()
877 const OatFile* oat_file = nullptr; in DexFile_getStaticSizeOfDexFile() local
879 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) { in DexFile_getStaticSizeOfDexFile()
904 const OatFile* oat_file; in DexFile_setTrusted() local
905 if (!ConvertJavaArrayToDexFiles(env, j_cookie, dex_files, oat_file)) { in DexFile_setTrusted()