HomeSort by relevance Sort by last modified time
    Searched refs:pathsWithCode (Results 1 - 3 of 3) sorted by null

  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/
DexoptUtilsTest.java 55 boolean[] pathsWithCode;
65 boolean[] pathsWithCode;
67 pathsWithCode = new boolean[] {true};
69 pathsWithCode = new boolean[9];
70 Arrays.fill(pathsWithCode, true);
71 pathsWithCode[7] = false; // config split
107 data.pathsWithCode = pathsWithCode;
116 data.info, sharedLibrary, data.pathsWithCode);
136 data.info, sharedLibrary, data.pathsWithCode);
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/dex/
DexoptUtils.java 40 * {@param pathsWithCode}, are ignored and will have null as their context in the returned array
67 String[] sharedLibraries, boolean[] pathsWithCode) {
93 classLoaderContexts[0] = pathsWithCode[0] ? baseApkContextClassLoader : null;
101 classLoaderContexts[i] = pathsWithCode[i]
137 if (pathsWithCode[splitIndex]) {
149 if (pathsWithCode[i]) {
  /frameworks/base/services/core/java/com/android/server/pm/
PackageDexOptimizer.java 175 boolean[] pathsWithCode = new boolean[paths.size()];
176 pathsWithCode[0] = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) != 0;
178 pathsWithCode[i] = (pkg.splitFlags[i - 1] & ApplicationInfo.FLAG_HAS_CODE) != 0;
181 pkg.applicationInfo, sharedLibraries, pathsWithCode);
197 if (!pathsWithCode[i]) {
    [all...]

Completed in 129 milliseconds