Searched refs:dexPath (Results 1 - 5 of 5) sorted by relevance
/libcore/dalvik/src/main/java/dalvik/system/ |
H A D | PathClassLoader.java | 32 * @param dexPath the list of jar/apk files containing classes and 37 public PathClassLoader(String dexPath, ClassLoader parent) { argument 38 super(dexPath, null, null, parent); 55 * @param dexPath the list of jar/apk files containing classes and 63 public PathClassLoader(String dexPath, String libraryPath, argument 65 super(dexPath, null, libraryPath, parent);
|
H A D | DexClassLoader.java | 45 * @param dexPath the list of jar/apk files containing classes and 55 public DexClassLoader(String dexPath, String optimizedDirectory, argument 57 super(dexPath, new File(optimizedDirectory), libraryPath, parent);
|
H A D | BaseDexClassLoader.java | 35 * @param dexPath the list of jar/apk files containing classes and 45 public BaseDexClassLoader(String dexPath, File optimizedDirectory, argument 48 this.pathList = new DexPathList(this, dexPath, libraryPath, optimizedDirectory);
|
H A D | DexPathList.java | 82 * @param dexPath list of dex/resource path elements, separated by 90 public DexPathList(ClassLoader definingContext, String dexPath, argument 97 if (dexPath == null) { 98 throw new NullPointerException("dexPath == null"); 119 // save dexPath for BaseDexClassLoader 120 this.dexElements = makePathElements(splitDexPath(dexPath), optimizedDirectory,
|
/libcore/luni/src/main/java/java/lang/ |
H A D | Runtime.java | 422 String dexPath = null;
|
Completed in 103 milliseconds