Lines Matching refs:path
53 File path = getResource(loader, System.mapLibraryName(libname)); in loadLibrary() local
54 if (path == null) { in loadLibrary()
59 path = getResource(loader, syslibname); in loadLibrary()
62 if (path == null) { in loadLibrary()
67 System.load(path.getAbsolutePath()); in loadLibrary()
86 File path = UrlToFileMapper.mapUrlToFile(loader.getResource(name)); in getResource() local
87 if (path != null) { in getResource()
88 return path; in getResource()
101 File path = UrlToFileMapper.mapUrlToFile(urls[i]); in getResource() local
102 if (path != null) { in getResource()
103 File dir = path.isDirectory() ? path : path.getParentFile(); in getResource()
105 path = new File(dir, name); in getResource()
106 if (path.exists()) { in getResource()
107 return path; in getResource()
111 path = new File(dir, name); in getResource()
112 if (path.exists()) { in getResource()
113 return path; in getResource()