Searched refs:file (Results 351 - 375 of 1222) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/java/nio/file/
H A DSecureDirectoryStream.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
25 package java.nio.file;
27 import java.nio.file.attribute.*;
36 * traverse file trees or otherwise operate on directories in a race-free manner.
37 * Race conditions can arise when a sequence of file operations cannot be
38 * carried out in isolation. Each of the file operations defined by this
39 * interface specify a relative path. All access to the file is relative
50 * <p> In the case of the default {@link java.nio.file
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileLog.hpp12 * version 2 for more details (a copy is included in the LICENSE file that
40 const char* _file; // name of file where XML goes
41 julong _file_end; // last good end of file
58 CompileLog(const char* file, FILE* fp, intx thread_id);
62 const char* file() { return _file; } function in class:CompileLog
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/defaults/
H A DSnmpProperties.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
37 * This class reads a file containing the property list defined for Java DMK
55 * Reads the Java DMK property list from a file and
58 public static void load(String file) throws IOException { argument
60 InputStream is = new FileInputStream(file);
82 * References the property that specifies the ACL file
85 * Property Name: <B>jdmk.acl.file</B>
87 public static final String ACL_FILE = "jdmk.acl.file";
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDLSSoundbankReader.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
66 public Soundbank getSoundbank(File file) argument
69 return new DLSSoundbank(file);
H A DSF2SoundbankReader.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
65 public Soundbank getSoundbank(File file) argument
68 return new SF2Soundbank(file);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DDataSourceStreamingDataHandler.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
48 public void moveTo(File file) throws IOException { argument
50 OutputStream os = new FileOutputStream(file);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileStore.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
28 import java.nio.file.*;
29 import java.nio.file.attribute.*;
53 // file store "display name" is the volume name if available
76 static WindowsFileStore create(WindowsPath file) throws IOException { argument
78 // if the file is a link then GetVolumePathName returns the
82 if (file.getFileSystem().supportsLinks()) {
83 target = WindowsLinkSupport.getFinalPath(file, tru
[all...]
/openjdk7/jdk/test/com/sun/org/apache/xml/internal/security/transforms/
H A DClassLoaderTest.java12 * version 2 for more details (a copy is included in the LICENSE file that
28 * @compile -XDignore.symbol.file ClassLoaderTest.java MyTransform.java
46 File file = new File(BASE);
48 urls[0] = file.toURI().toURL();
/openjdk7/jdk/test/java/net/URLConnection/
H A DGetContentType.java12 * version 2 for more details (a copy is included in the LICENSE file that
59 File file = new File(".");
60 return "jar:file:" + file.getCanonicalPath() +
/openjdk7/jdk/test/java/nio/file/DirectoryStream/
H A DBasic.java12 * version 2 for more details (a copy is included in the LICENSE file that
26 * @summary Unit test for java.nio.file.DirectoryStream
30 import java.nio.file.*;
31 import static java.nio.file.Files.*;
47 // create file in directory
75 public boolean accept(Path file) {
76 return matcher.matches(file);
90 public boolean accept(Path file) {
91 return matcher.matches(file);
101 public boolean accept(Path file) throw
[all...]
/openjdk7/jdk/test/sun/security/tools/keytool/
H A DNewSize7.java12 * version 2 for more details (a copy is included in the LICENSE file that
32 import java.nio.file.Files;
33 import java.nio.file.Paths;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/nio/
H A DPathFileManager.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
29 import java.nio.file.FileSystem;
30 import java.nio.file.Path;
36 * File manager based on {@linkplain File java.nio.file.Path}.
51 * Get the default file system used to create paths. If no value has been
52 * set, the default file system is {@link FileSystems#getDefault}.
57 * Set the default file system used to create paths.
58 * @param fs the default file syste
[all...]
/openjdk7/langtools/src/share/classes/javax/tools/
H A DToolProvider.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
182 File file = new File(System.getProperty("java.home"));
183 if (file.getName().equalsIgnoreCase("jre"))
184 file = file.getParentFile();
186 file = new File(file, name);
190 if (!file
[all...]
/openjdk7/jdk/src/share/classes/sun/util/
H A DLocaleDataMetaInfo-XLocales.java.template8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 #warn This file is preprocessed before being compiled
/openjdk7/jdk/test/java/util/jar/Manifest/
H A DCreateManifest.java12 * version 2 for more details (a copy is included in the LICENSE file that
28 * @compile -XDignore.symbol.file=true CreateManifest.java
32 import java.nio.file.Files;
33 import java.nio.file.Paths;
43 // create the MANIFEST.MF file
/openjdk7/jdk/test/javax/sound/midi/Gervill/DLSSoundbankReader/
H A DTestGetSoundbankInputStream.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
47 File file = new File(System.getProperty("test.src", "."), "ding.dls");
48 FileInputStream fis = new FileInputStream(file);
H A DTestGetSoundbankUrl.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
46 File file = new File(System.getProperty("test.src", "."), "ding.dls");
47 URL url = file.toURI().toURL();
/openjdk7/jdk/test/javax/sound/midi/Gervill/SF2SoundbankReader/
H A DTestGetSoundbankInputStream.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
47 File file = new File(System.getProperty("test.src", "."), "ding.sf2");
48 FileInputStream fis = new FileInputStream(file);
H A DTestGetSoundbankUrl.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
46 File file = new File(System.getProperty("test.src", "."), "ding.sf2");
47 URL url = file.toURI().toURL();
/openjdk7/jdk/test/javax/swing/JFileChooser/6688203/
H A Dbug6688203.java12 * version 2 for more details (a copy is included in the LICENSE file that
52 File file = new File("Some file");
64 fileSystemView.getSystemDisplayName(file);
/openjdk7/jdk/test/sun/misc/IoTrace/
H A DioTraceTest.sh12 # version 2 for more details (a copy is included in the LICENSE file that
28 ${TESTJAVA}/bin/javac -XDignore.symbol.file=true -d ${TESTCLASSES} *.java
/openjdk7/langtools/test/tools/javac/
H A DT6625520.java12 * version 2 for more details (a copy is included in the LICENSE file that
27 import com.sun.tools.javac.file.*;
28 import com.sun.tools.javac.file.JavacFileManager;
/openjdk7/langtools/test/tools/javac/api/6411333/
H A DT6411333.java12 * version 2 for more details (a copy is included in the LICENSE file that
47 JavaFileObject file = fm.getJavaFileForInput(PLATFORM_CLASS_PATH,
51 file);
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DMissingCallerSensitive.java12 * version 2 for more details (a copy is included in the LICENSE file that
28 * @compile -XDignore.symbol.file MissingCallerSensitive.java
33 import java.nio.file.Path;
34 import java.nio.file.Paths;
/openjdk7/jdk/src/solaris/native/java/io/
H A DUnixFileSystem_md.c8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
112 jobject file)
116 WITH_FIELD_PLATFORM_STRING(env, file, ids.path, path) {
130 jobject file, jint a)
146 WITH_FIELD_PLATFORM_STRING(env, file, ids.path, path) {
157 jobject file,
164 WITH_FIELD_PLATFORM_STRING(env, file, ids.path, path) {
204 jobject file)
111 Java_java_io_UnixFileSystem_getBooleanAttributes0(JNIEnv *env, jobject this, jobject file) argument
129 Java_java_io_UnixFileSystem_checkAccess(JNIEnv *env, jobject this, jobject file, jint a) argument
156 Java_java_io_UnixFileSystem_setPermission(JNIEnv *env, jobject this, jobject file, jint access, jboolean enable, jboolean owneronly) argument
203 Java_java_io_UnixFileSystem_getLastModifiedTime(JNIEnv *env, jobject this, jobject file) argument
219 Java_java_io_UnixFileSystem_getLength(JNIEnv *env, jobject this, jobject file) argument
264 Java_java_io_UnixFileSystem_delete0(JNIEnv *env, jobject this, jobject file) argument
279 Java_java_io_UnixFileSystem_list(JNIEnv *env, jobject this, jobject file) argument
350 Java_java_io_UnixFileSystem_createDirectory(JNIEnv *env, jobject this, jobject file) argument
381 Java_java_io_UnixFileSystem_setLastModifiedTime(JNIEnv *env, jobject this, jobject file, jlong time) argument
410 Java_java_io_UnixFileSystem_setReadOnly(JNIEnv *env, jobject this, jobject file) argument
427 Java_java_io_UnixFileSystem_getSpace(JNIEnv *env, jobject this, jobject file, jint t) argument
[all...]

Completed in 58 milliseconds

<<11121314151617181920>>