Searched refs:path (Results 276 - 300 of 594) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/windows/bin/
H A Djava_md.c48 static jboolean GetPublicJREHome(char *path, jint pathsize);
51 static jboolean GetJREPath(char *path, jint pathsize);
152 * Returns the arch path, to get the current arch use the
261 * assumed to be present in the "JRE path" directory. If it is not found
262 * there (or "JRE path" fails to resolve), skip the explicit load and let
284 JLI_TraceLauncher("CRT path is %s\n", crtpath);
301 * Find path to JRE based on .exe's location or registry settings.
304 GetJREPath(char *path, jint pathsize) argument
309 if (GetApplicationHome(path, pathsize)) {
311 JLI_Snprintf(javadll, sizeof(javadll), "%s\\bin\\" JAVA_DLL, path);
746 char *path; local
916 char path[MAXPATHLEN + 1]; local
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystem.java61 throw new AssertionError("Default directory is not an absolute path");
62 this.defaultDirectory = result.path();
240 String path;
242 path = first;
253 path = sb.toString();
255 return WindowsPath.parse(this, path);
311 public boolean matches(Path path) {
312 return pattern.matcher(path.toString()).matches();
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/NewImpl/
H A DComHTTPSConnection.java91 * Returns the path to the file obtained from
98 String path = "";
104 path = line.substring(0, index);
114 if (path.length() != 0) {
115 return path;
123 * the file represented by the argument <b>path</b>.
129 * to <b>path</b> could not be loaded.
131 private byte[] getBytes(String path) argument
161 // get path to class file from header
164 String path
[all...]
H A DJavaxHTTPSConnection.java89 * Returns the path to the file obtained from
96 String path = "";
102 path = line.substring(0, index);
112 if (path.length() != 0) {
113 return path;
121 * the file represented by the argument <b>path</b>.
127 * to <b>path</b> could not be loaded.
129 private byte[] getBytes(String path) argument
159 // get path to class file from header
162 String path
[all...]
/openjdk7/langtools/test/tools/javac/api/
H A DTestTrees.java109 TreePath path = trees.getPath(e);
110 if (path == null) {
114 if (path.getLeaf() != tree)
117 Element e2 = trees.getElement(path);
127 TypeMirror t = trees.getTypeMirror(path);
144 TreePath path = trees.getPath(e, a);
145 if (path.getLeaf() != tree)
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.cpp201 // construct full path name
202 char path[JVM_MAXPATHLEN]; local
203 if (jio_snprintf(path, sizeof(path), "%s%s%s", _dir, os::file_separator(), name) == -1) {
208 if (os::stat(path, &st) == 0) {
210 int file_handle = os::open(path, 0, 0);
287 LazyClassPathEntry::LazyClassPathEntry(char* path, struct stat st) : ClassPathEntry() { argument
288 _path = strdup(path);
443 assert(_first_entry == NULL, "should not setup bootstrap class search path twice");
446 tty->print_cr("[Bootstrap loader class path
457 char* path = NEW_C_HEAP_ARRAY(char, end-start+1, mtClass); local
468 create_class_path_entry(char *path, struct stat st, ClassPathEntry **new_entry, bool lazy) argument
522 create_class_path_zip_entry(const char *path) argument
575 update_class_path_entry_list(const char *path, bool check_for_duplicates) argument
607 char path[JVM_MAXPATHLEN]; local
[all...]
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/http/ChunkedOutputStream/
H A DTest.java62 String path = req.getRequestURI().getPath();
63 if (path.equals("/d0")) {
65 } else if (path.equals("/d01")) {
67 } else if (path.equals("/d3")) {
69 } else if (path.equals("/d4") || path.equals("/d5")) {
71 } else if (path.equals("/d6")) {
73 } else if (path.equals("/d7")) {
75 } else if (path.equals("/d8")) {
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DSourceMapper.java56 //the source path. (Bug ID 4186582)
80 //the source path. (Bug ID 4186582)
96 return ""; //The source path is empty.
119 File path = new File(dirs[i], full);
120 if (path.exists()) {
121 return path;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DServerMgr.java86 String path = url.toURI().getPath();
87 logger.fine("Creating HTTP Context at = "+path);
88 HttpContext context = server.createContext(path);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DSCD.java60 * This method involves parsing the path expression and preparing the in-memory
67 * @param path
73 public static SCD create(String path, NamespaceContext nsContext) throws java.text.ParseException { argument
75 SCDParser p = new SCDParser(path,nsContext);
77 return new SCDImpl(path,list.toArray(new Step[list.size()]));
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DInheritedChannel.c121 Java_sun_nio_ch_InheritedChannel_open0(JNIEnv *env, jclass cla, jstring path, jint oflag) argument
142 str = JNU_GetStringPlatformChars(env, path, NULL);
150 JNU_ReleaseStringPlatformChars(env, path, str);
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileStore.java134 Path path = FileSystems.getDefault().getPath(fileStore.name());
135 this.size = Files.size(path);
136 this.fstore = Files.getFileStore(path);
/openjdk7/langtools/test/tools/javap/
H A DT4501661.java91 String path = f.getPath();
92 return new File(path.substring(0, path.length() - 5) + ".class");
H A DT4777949.java80 String path = f.getPath();
81 return new File(path.substring(0, path.length() - 5) + ".class");
H A DT6716452.java103 String path = f.getPath();
104 return new File(path.substring(0, path.length() - 5) + ".class");
/openjdk7/jdk/src/solaris/bin/
H A Djava_md_solinux.c90 * desired data model path, regardless if data models matched or not. The
92 * LD_LIBRARY_PATH path available, for the runtime linker.
103 * a. if the LD_LIBRARY_PATH's first component is the the path to the desired
222 JvmExists(const char *path) { argument
225 JLI_Snprintf(tmp, PATH_MAX, "%s/%s", path, JVM_DLL);
239 char *path; local
243 /* fastest path */
260 * we have a suspicious path component, check if it contains a libjvm.so
263 for (path = JLI_StrTok(envpath, ":"); path !
783 GetJREPath(char *path, jint pathsize, const char * arch, jboolean speculative) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DURI.java30 * the various components (scheme, host, port, userinfo, path, query
43 * of user information, host, and port), path segment, query segment
50 * the entire scheme-specific part is treated as the "path" portion
144 /** Mask for path characters */
231 /** If specified, stores the path for this URI; otherwise null */
263 * accordingly - setting the scheme, userinfo, host,port, path, query
266 * into a scheme and scheme-specific part (stored as the path) only.
282 * accordingly - setting the scheme, userinfo, host,port, path, query
285 * into a scheme and scheme-specific part (stored as the path) only.
340 * Only the scheme and scheme-specific part (stored as the path) ar
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeSelectionModel.java79 /** Provides a row for a given path. */
91 /** Last path that was added. */
93 /** Index of the lead path in selection. */
174 * Sets the selection to path. If this represents a change, then
175 * the TreeSelectionListeners are notified. If <code>path</code> is
178 * @param path new path to select
180 public void setSelectionPath(TreePath path) { argument
181 if(path == null)
186 newPaths[0] = path;
304 addSelectionPath(TreePath path) argument
427 removeSelectionPath(TreePath path) argument
545 isPathSelected(TreePath path) argument
1221 protected TreePath path; field in class:PathPlaceHolder
1223 PathPlaceHolder(TreePath path, boolean isNew) argument
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DURLClassLoader.java57 * path of URLs referring to both JAR files and directories. Any URL that
72 /* The search path for classes and resources */
324 * @param url the URL to be added to the search path of URLs
331 * Returns the search path of URLs for loading classes and resources.
334 * @return the search path of URLs for loading classes and resources.
342 * path. Any URLs referring to JAR files are loaded and opened as needed
357 String path = name.replace('.', '/').concat(".class");
358 Resource res = ucp.getResource(path, false);
471 String path = name.replace('.', '/').concat("/");
477 Attributes attr = man.getAttributes(path);
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsMenuBarUI.java144 MenuElement path[] = new MenuElement[2];
145 path[0] = (MenuElement)menuBar;
146 path[1] = (MenuElement)menu;
147 msm.setSelectedPath(path);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapURL.java85 init(url); // scheme, host, port, path, query
195 * Parses the path and query components of an URL and sets this
201 // path begins with a '/' or is empty
203 if (path.equals("")) {
207 DN = path.startsWith("/") ? path.substring(1) : path;
/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DDTDInputStream.java192 String path = DTDBuilder.mapping.get(ent.getString());
194 return new InputStreamReader(new FileInputStream(path));
198 String path = DTDBuilder.mapping.baseStr + ent.getString();
199 return new InputStreamReader(new FileInputStream(path));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DTempFiles.java105 static File toFile(Object path) throws InvocationTargetException, IllegalAccessException { argument
106 return (File) METHOD_PATH_TO_FILE.invoke(path);
119 Object path = toPath(dir);
120 LOGGER.log(Level.FINEST, "Temp file (path: {0}, prefix:{1}, suffix:{2}) being created using NIO API.", new Object[]{dir.getAbsolutePath(), prefix, suffix});
121 return toFile(METHOD_FILES_CREATE_TEMP_FILE_WITHPATH.invoke(null, path, prefix, suffix, Array.newInstance(CLASS_FILE_ATTRIBUTE, 0)));
129 LOGGER.log(Level.WARNING, "Error invoking java.nio API, temp file (path: {0}, prefix:{1}, suffix:{2}) being created using old java.io API.",
135 LOGGER.log(Level.WARNING, "Error invoking java.nio API, temp file (path: {0}, prefix:{1}, suffix:{2}) being created using old java.io API.",
/openjdk7/jdk/src/windows/javavm/export/
H A Djvm_md.h51 char *path; member in struct:__anon1051
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djavax_swing_JTree.java72 public void valueForPathChanged(TreePath path, Object newValue) { argument

Completed in 288 milliseconds

<<11121314151617181920>>