Searched refs:classPath (Results 1 – 3 of 3) sorted by relevance
55 private final String[] classPath; field in ClassPathPackageInfoSource61 classPath = getClassPath(); in ClassPathPackageInfoSource()114 for (String entryName : classPath) { in findClasses()205 String classPath = System.getProperty("java.class.path"); in getClassPath() local207 return classPath.split(Pattern.quote(separator)); in getClassPath()
556 static ClassLoader createPathClassLoader(String classPath, int targetSdkVersion) { in createPathClassLoader() argument559 return ClassLoaderFactory.createClassLoader(classPath, libraryPath, libraryPath, in createPathClassLoader()568 private static void performSystemServerDexOpt(String classPath) { in performSystemServerDexOpt() argument569 final String[] classPathElements = classPath.split(":"); in performSystemServerDexOpt()634 private static String getSystemServerClassLoaderContext(String classPath) { in getSystemServerClassLoaderContext() argument635 return classPath == null ? "PCL[]" : "PCL[" + classPath + "]"; in getSystemServerClassLoaderContext()645 private static String encodeSystemServerClassPath(String classPath, String newElement) { in encodeSystemServerClassPath() argument646 return (classPath == null || classPath.isEmpty()) in encodeSystemServerClassPath()648 : classPath + ":" + newElement; in encodeSystemServerClassPath()
1085 const char* classPath; member1103 result = RegisterMethodsOrDie(env, cri->classPath, cri->methods, cri->methodCount); in register_android_opengl_classes()