Home
last modified time | relevance | path

Searched refs:classPath (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/test-runner/src/android/test/
DClassPathPackageInfoSource.java55 private final String[] classPath; field in ClassPathPackageInfoSource
61 classPath = getClassPath(); in ClassPathPackageInfoSource()
114 for (String entryName : classPath) { in findClasses()
205 String classPath = System.getProperty("java.class.path"); in getClassPath() local
207 return classPath.split(Pattern.quote(separator)); in getClassPath()
/frameworks/base/core/java/com/android/internal/os/
DZygoteInit.java648 static ClassLoader createPathClassLoader(String classPath, int targetSdkVersion) { in createPathClassLoader() argument
654 return ClassLoaderFactory.createClassLoader(classPath, libraryPath, libraryPath, in createPathClassLoader()
662 private static void performSystemServerDexOpt(String classPath) { in performSystemServerDexOpt() argument
663 final String[] classPathElements = classPath.split(":"); in performSystemServerDexOpt()
729 private static String getSystemServerClassLoaderContext(String classPath) { in getSystemServerClassLoaderContext() argument
730 return classPath == null ? "PCL[]" : "PCL[" + classPath + "]"; in getSystemServerClassLoaderContext()
741 private static String encodeSystemServerClassPath(String classPath, String newElement) { in encodeSystemServerClassPath() argument
742 return (classPath == null || classPath.isEmpty()) in encodeSystemServerClassPath()
744 : classPath + ":" + newElement; in encodeSystemServerClassPath()
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/pm/dex/
DDexManagerTests.java555 String classPath = String.join(File.pathSeparator, mBarUser0.getSecondaryDexPaths()); in testNotifySupportedAndUnsupportedClassLoader() local
558 List<String> classPaths = Arrays.asList(classPath, classPath); in testNotifySupportedAndUnsupportedClassLoader()
/frameworks/base/core/jni/android/opengl/
Dutil.cpp1037 const char* classPath; member
1054 result = RegisterMethodsOrDie(env, cri->classPath, cri->methods, cri->methodCount); in register_android_opengl_classes()