summaryrefslogtreecommitdiffstats
path: root/dalvik
diff options
context:
space:
mode:
authorRichard Uhler <ruhler@google.com>2015-04-09 14:13:28 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-04-09 14:13:28 +0000
commit1076f833c872abe72cb34790bb8f971f670add9f (patch)
treecc6b4e4937521891e3d7282caa3181bdf448c144 /dalvik
parent44c7aa355e06ac7a9d46fcd5870b183e4d34d3bf (diff)
parent3bc9b15f175e640b58cd0926f6e208114a693a30 (diff)
downloadlibcore-1076f833c872abe72cb34790bb8f971f670add9f.zip
libcore-1076f833c872abe72cb34790bb8f971f670add9f.tar.gz
libcore-1076f833c872abe72cb34790bb8f971f670add9f.tar.bz2
Merge "Rename isDexOptNeededInternal and add SELF_PATCHOAT_NEEDED."
Diffstat (limited to 'dalvik')
-rw-r--r--dalvik/src/main/java/dalvik/system/DexFile.java37
1 files changed, 22 insertions, 15 deletions
diff --git a/dalvik/src/main/java/dalvik/system/DexFile.java b/dalvik/src/main/java/dalvik/system/DexFile.java
index 3ffd634..79f2912 100644
--- a/dalvik/src/main/java/dalvik/system/DexFile.java
+++ b/dalvik/src/main/java/dalvik/system/DexFile.java
@@ -325,37 +325,44 @@ public final class DexFile {
throws FileNotFoundException, IOException;
/**
- * See {@link #isDexOptNeededInternal(String, String, String, boolean)}.
+ * See {@link #getDexOptNeeded(String, String, String, boolean)}.
*
* @hide
*/
- public static final byte UP_TO_DATE = 0;
+ public static final int NO_DEXOPT_NEEDED = 0;
/**
- * See {@link #isDexOptNeededInternal(String, String, String, boolean)}.
+ * See {@link #getDexOptNeeded(String, String, String, boolean)}.
*
* @hide
*/
- public static final byte PATCHOAT_NEEDED = 1;
+ public static final int DEX2OAT_NEEDED = 1;
/**
- * See {@link #isDexOptNeededInternal(String, String, String, boolean)}.
+ * See {@link #getDexOptNeeded(String, String, String, boolean)}.
*
* @hide
*/
- public static final byte DEXOPT_NEEDED = 2;
+ public static final int PATCHOAT_NEEDED = 2;
/**
- * Returns UP_TO_DATE if the VM believes that the apk/jar file
- * is up to date, PATCHOAT_NEEDED if it believes that the file is up
- * to date but it must be relocated to match the base address offset,
- * and DEXOPT_NEEDED if it believes that it is out of date and should
- * be passed through "dexopt" again.
+ * See {@link #getDexOptNeeded(String, String, String, boolean)}.
+ *
+ * @hide
+ */
+ public static final int SELF_PATCHOAT_NEEDED = 3;
+
+ /**
+ * Returns the VM's opinion of what kind of dexopt is needed to make the
+ * apk/jar file up to date.
*
* @param fileName the absolute path to the apk/jar file to examine.
- * @return DEXOPT_NEEDED if dexopt should be called on the file,
- * PATCHOAT_NEEDED if we need to run "patchoat" on it and
- * UP_TO_DATE otherwise.
+ * @return NO_DEXOPT_NEEDED if the apk/jar is already up to date.
+ * DEX2OAT_NEEDED if dex2oat should be called on the apk/jar file.
+ * PATCHOAT_NEEDED if patchoat should be called on the apk/jar
+ * file to patch the odex file along side the apk/jar.
+ * SELF_PATCHOAT_NEEDED if selfpatchoat should be called on the
+ * apk/jar file to patch the oat file in the dalvik cache.
* @throws java.io.FileNotFoundException if fileName is not readable,
* not a file, or not present.
* @throws java.io.IOException if fileName is not a valid apk/jar file or
@@ -366,7 +373,7 @@ public final class DexFile {
*
* @hide
*/
- public static native byte isDexOptNeededInternal(String fileName, String pkgname,
+ public static native int getDexOptNeeded(String fileName, String pkgname,
String instructionSet, boolean defer)
throws FileNotFoundException, IOException;
}