Searched refs:path (Results 376 - 400 of 594) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/agent/test/jdi/
H A Dserialvm.sh58 $jdk/bin/java -Dsun.jvm.hotspot.jdi.ConnectorImpl.DEBUG -Dsun.jvm.hotspot.jdi.SAJDIClassLoader.DEBUG -Djava.class.path=$javacp serialvm $2 $3
/openjdk7/hotspot/src/os/windows/vm/
H A Djvm_windows.h82 char *path; member in struct:__anon99
H A Dos_windows.inline.hpp74 inline int os::readdir_buf_size(const char *path) argument
H A Dos_windows.cpp199 // Found the full path to jvm[_g].dll.
200 // Now cut the path to <java_home>/jre if we can.
282 char path[MAX_PATH]; local
284 GetWindowsDirectory(path, MAX_PATH);
286 path, PACKAGE_DIR, EXT_DIR);
1050 dirp->path = (char *)malloc(strlen(dirname) + 5, mtInternal);
1051 if (dirp->path == 0) {
1056 strcpy(dirp->path, dirname);
1058 fattr = GetFileAttributes(dirp->path);
1060 free(dirp->path, mtInterna
1171 char* path = pelements[i]; local
3640 char path[MAX_PATH]; local
3950 stat(const char *path, struct stat *sbuf) argument
4103 open(const char *path, int oflag, int mode) argument
4115 dir_is_empty(const char* path) argument
4126 create_binary_file(const char* path, bool rewrite_existing) argument
4162 native_path(char *path) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDesktopPeer.java86 private static native int _lsOpenFile(String path, boolean print); argument
/openjdk7/jdk/src/windows/classes/sun/awt/shell/
H A DWin32ShellFolder2.java222 String path = getFileSystemPath(csidl);
223 return path == null
225 : path;
283 Win32ShellFolder2(Win32ShellFolder2 parent, long pIShellFolder, long relativePIDL, String path) { argument
284 super(parent, (path != null) ? path : "ShellFolder: ");
486 // Short-circuit circuitous delegation path
567 // Return the path to the underlying file system object
596 // Return whether the path is a network root.
598 private static boolean isNetworkRoot(String path) { argument
881 getExecutableType(String path) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DPackageWriterImpl.java278 String path = DirectoryManager.getRelativePath(packageDoc.name(),
280 li = HtmlTree.LI(getHyperLink(path + "package-summary.html", "",
296 String path = DirectoryManager.getRelativePath(packageDoc.name(),
298 li = HtmlTree.LI(getHyperLink(path + "package-summary.html", "",
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlDocWriter.java64 String path, String filename) throws IOException {
66 configuration.destDirName + path, filename,
71 ((path.length() > 0)? path + File.separator: "") + filename));
63 HtmlDocWriter(Configuration configuration, String path, String filename) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DPackageDocImpl.java67 public boolean setDocPath = false; //Flag to avoid setting doc path multiple times.
339 * set doc path for an unzipped directory
341 public void setDocPath(FileObject path) { argument
343 if (path == null)
345 if (!path.equals(docPath)) {
346 docPath = path;
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_md.h62 void md_get_prelude_path(char *path, int path_len, char *filename);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dutils.h67 void mkdirs(int oklen, char* path);
/openjdk7/jdk/test/sun/misc/IoTrace/
H A DIoTraceAgent.java87 public static Object fileReadBegin(String path) { argument
90 return l.fileReadBegin(path);
102 public static Object fileWriteBegin(String path) { argument
105 return l.fileWriteBegin(path);
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/
H A DMonitoredHostProvider.java72 String path = hostId.getPath();
74 if ((path != null) && (path.length() > 0)) {
75 sn = path;
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractWatchService.java65 abstract WatchKey register(Path path, argument
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixUriUtils.java63 // transformation use raw path
67 throw new IllegalArgumentException("URI path component is empty");
101 byte[] path = up.toAbsolutePath().asByteArray();
103 assert path[0] == '/';
104 for (int i=1; i<path.length; i++) {
105 char c = (char)(path[i] & 0xff);
241 // All valid path characters
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeCellEditor.java96 /** Last path that was selected. */
260 TreePath path = tree.getPathForLocation(
263 editable = (lastPath != null && path != null &&
264 lastPath.equals(path));
265 if (path!=null) {
266 lastRow = tree.getRowForPath(path);
267 Object value = path.getLastPathComponent();
269 boolean expanded = tree.isExpanded(path);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileCopy.java464 private static String asWin32Path(WindowsPath path) throws IOException { argument
466 return path.getPathForWin32Calls();
468 x.rethrowAsIOException(path);
481 String path = WindowsLinkSupport.getFinalPath(source, followLinks);
490 WindowsAclFileAttributeView.getFileSecurity(path, request);
/openjdk7/jdk/src/share/classes/sun/security/validator/
H A DPKIXValidator.java166 * Returns the length of the last certification path that is validated by
169 * path that is being validated. It is necessary since engineValidate()
170 * may modify the length of the path.
172 * @return the length of the last certification path passed to
311 private static X509Certificate[] toArray(CertPath path, TrustAnchor anchor) argument
314 path.getCertificates();
343 CertPath path = factory.generateCertPath(Arrays.asList(chain));
346 (PKIXCertPathValidatorResult)validator.validate(path, params);
348 return toArray(path, result.getTrustAnchor());
351 ("PKIX path validatio
[all...]
/openjdk7/jdk/src/share/demo/applets/Fractal/
H A DCLSFractal.java202 void render(Graphics g, String path) { argument
240 for (int pos = 0; pos < path.length(); pos++) {
241 switch (path.charAt(pos)) {
426 private synchronized void setPath(StringBuffer path) { argument
427 currentPath = path;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicMenuItemUI.java743 void printMenuElementArray(MenuElement path[], boolean dumpStack) { argument
746 for(i=0,j=path.length; i<j ;i++){
749 MenuElement me = path[i];
809 * such as clearing the selected path and messaging the
903 MenuElement path[] = manager.getSelectedPath();
904 if (path.length > 1 && path[path.length-1] == menuItem) {
905 MenuElement newPath[] = new MenuElement[path.length-1];
907 for(i=0,c=path
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/dispatch/
H A DDispatchImpl.java327 final String path = (pathInfo != null) ? pathInfo : endpointURI.getPath();
329 //final URI temp = new URI(null, null, path, query, fragment);
337 if (path != null) {
338 spec.append(path);
350 throw new WebServiceException(DispatchMessages.INVALID_URI_RESOLUTION(path));
354 private static String checkPath(@Nullable String path) { argument
356 return (path == null || path.startsWith("/")) ? path : "/" + path;
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DURLClassPath.java57 * This class is used to maintain a search path of URLs for loading classes
78 /* The original search path of URLs. */
79 private ArrayList<URL> path = new ArrayList<URL>(); field in class:URLClassPath
84 /* The resulting search path of Loaders */
108 path.add(urls[i]);
137 * Appends the specified URL to the search path of directory and JAR
147 if (url == null || path.contains(url))
151 path.add(url);
156 * Returns the original search path of URLs.
160 return path
392 pathToURLs(String path) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DFileChannelImpl.java60 // The path of the referenced file (null if the parent stream is created with a file descriptor)
61 private final String path; field in class:FileChannelImpl
69 private FileChannelImpl(FileDescriptor fd, String path, boolean readable, argument
77 this.path = path;
82 public static FileChannel open(FileDescriptor fd, String path, argument
86 return new FileChannelImpl(fd, path, readable, writable, false, parent);
90 public static FileChannel open(FileDescriptor fd, String path, argument
94 return new FileChannelImpl(fd, path, readable, writable, append, parent);
142 Object traceContext = IoTrace.fileReadBegin(path);
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.cpp118 const char *path = cpe->name(); local
119 if (os::stat(path, &st) != 0) {
120 // If we can't access a jar file in the boot path, then we can't
122 fail_stop("Unable to open jar file %s.", path);
488 const char *path = cpe->name(); local
489 if (os::stat(path, &st) != 0) {
490 fail_continue("Unable to open jar file %s.", path);
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp68 // the path to which we attach the door file descriptor
75 static void set_door_path(char* path) { argument
76 if (path == NULL) {
79 strncpy(_door_path, path, PATH_MAX);
361 char* path = SolarisAttachListener::door_path(); local
362 ::fdetach(path);
363 ::unlink(path);

Completed in 76 milliseconds

<<11121314151617181920>>