Lines Matching defs:path

110      * table mapping codebase URL path and context class loader pairs
129 * java.rmi.server.codebase property as the URL path.
227 * Get the codebase URL path for the class loader, if it supports
287 * path. The parent classloader of the returned classloader is the
358 * codebase URL path in the current execution context.
400 * Get or create the RMI class loader for this codebase URL path
415 * to access all of the URLs in the codebase path, wrap the
560 * Get or create the RMI class loader for this codebase URL path
575 * to access all of the URLs in the codebase path, wrap the
757 private static URL[] pathToURLs(String path)
761 Object[] v = pathToURLsCache.get(path);
766 StringTokenizer st = new StringTokenizer(path); // divide by spaces
772 pathToURLsCache.put(path,
773 new Object[] {urls, new SoftReference<String>(path)});
795 StringBuffer path = new StringBuffer(urls[0].toExternalForm());
797 path.append(' ');
798 path.append(urls[i].toExternalForm());
800 return path.toString();
817 * Look up the RMI class loader for the given codebase URL path
825 * If the requested codebase URL path is empty, the supplied
854 * Look up the codebase URL path and parent class loader pair
875 * loader instance for the requested codebase URL path and
878 * necessary to load classes from its codebase URL path.
901 * LoaderKey holds a codebase URL path and parent class loader pair
955 * queue. The entry contains the codebase URL path and parent class
978 * codebase URL path should execute with.
1009 // add permissions reuiqred to load from codebase URL path
1026 * path; if "forLoader" is true, also adds URL-specific
1048 * directory in the file path, either because JAR
1055 String path = p.getName();
1056 int endIndex = path.lastIndexOf(File.separatorChar);
1058 path = path.substring(0, endIndex+1);
1059 if (path.endsWith(File.separator)) {
1060 path += "-";
1062 Permission p2 = new FilePermission(path, "read");
1066 perms.add(new FilePermission(path, "read"));
1134 /** string form of loader's codebase URL path, also an optimization */