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

  /frameworks/base/services/core/java/com/android/server/pm/dex/
DexoptUtils.java 89 // The result is stored in classLoaderContexts.
92 String[] classLoaderContexts = new String[/*base apk*/ 1 + splitRelativeCodePaths.length];
93 classLoaderContexts[0] = pathsWithCode[0] ? baseApkContextClassLoader : null;
100 for (int i = 1; i < classLoaderContexts.length; i++) {
101 classLoaderContexts[i] = pathsWithCode[i]
114 // split. We do this recursively and store intermediate results in classLoaderContexts.
120 // classLoaderContexts is that the later contains the full chain of class loaders for
133 // The splits without dependencies will have classLoaderContexts[config_split_index]
140 splitDependencies, classLoaderContexts, splitDependencyOnBase);
144 // At this point classLoaderContexts contains only the parent dependencies
    [all...]
DexManager.java 192 String[] classLoaderContexts = DexoptUtils.processContextForDexLoad(
225 // A null classLoaderContexts means that there are unsupported class loaders in the
227 String classLoaderContext = classLoaderContexts == null
229 : classLoaderContexts[dexPathIndex];
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
PackageDexOptimizer.java 180 String[] classLoaderContexts = DexoptUtils.getClassLoaderContexts(
184 if (paths.size() != classLoaderContexts.length) {
200 if (classLoaderContexts[i] == null) {
238 profileUpdated, classLoaderContexts[i], dexoptFlags, sharedGid,
    [all...]

Completed in 199 milliseconds