Searched refs:file (Results 376 - 400 of 1222) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/windows/native/java/io/
H A DWin32FileSystem_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
117 /* Check whether or not the file name in "path" is a Windows reserved
119 returned result from GetFullPathName. If the file name in the path
151 jobject file)
155 WITH_NATIVE_PATH(env, file, ids.path, path) {
173 jobject file, jint a)
187 WITH_NATIVE_PATH(env, file, ids.path, path) {
197 jobject file,
150 Java_java_io_Win32FileSystem_getBooleanAttributes(JNIEnv *env, jobject this, jobject file) argument
172 Java_java_io_Win32FileSystem_checkAccess(JNIEnv *env, jobject this, jobject file, jint a) argument
196 Java_java_io_Win32FileSystem_setPermission(JNIEnv *env, jobject this, jobject file, jint access, jboolean enable, jboolean owneronly) argument
223 Java_java_io_Win32FileSystem_getLastModifiedTime(JNIEnv *env, jobject this, jobject file) argument
245 Java_java_io_Win32FileSystem_getLength(JNIEnv *env, jobject this, jobject file) argument
317 Java_java_io_Win32FileSystem_delete0(JNIEnv *env, jobject this, jobject file) argument
334 Java_java_io_Win32FileSystem_list(JNIEnv *env, jobject this, jobject file) argument
387 Java_java_io_Win32FileSystem_createDirectory(JNIEnv *env, jobject this, jobject file) argument
419 Java_java_io_Win32FileSystem_setLastModifiedTime(JNIEnv *env, jobject this, jobject file, jlong time) argument
446 Java_java_io_Win32FileSystem_setReadOnly(JNIEnv *env, jobject this, jobject file) argument
485 Java_java_io_Win32FileSystem_getSpace0(JNIEnv *env, jobject this, jobject file, jint t) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletViewerPanel.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
88 String file = documentURL.getFile();
89 int i = file.lastIndexOf('/');
90 if (i >= 0 && i < file.length() - 1) {
92 baseURL = new URL(documentURL, file.substring(0, i + 1));
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DLinkPermission.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
26 package java.nio.file;
45 * <td> Ability to add an existing file to a directory. This is sometimes
48 * linking to any file or directory in the file system thus allowing the
55 * linking to any file or directory in the file system thus allowing the
/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DMLetContent.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 * The MLet text file's base URL.
77 * from an <CODE>MLET</CODE> tag in an MLet text file.
79 * @param url The URL of the MLet text file containing the
111 String file = documentURL.getFile();
112 int i = file.lastIndexOf('/');
113 if (i >= 0 && i < file.length() - 1) {
115 baseURL = new URL(documentURL, file
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DPropList.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
40 public static PropList readSpecFile(File file, int plane) argument
43 return new PropList(file, plane);
57 private PropList(File file, int plane) throws IOException { argument
60 BufferedReader sbfr = new BufferedReader(new FileReader(file));
/openjdk7/hotspot/src/share/vm/utilities/
H A DelfStringTable.hpp12 * version 2 for more details (a copy is included in the LICENSE file that
35 // The string table represents a string table section in an elf file.
37 // one blob. Otherwise, it will load string from file when requested.
41 ElfStringTable(FILE* file, Elf_Shdr shdr, int index);
63 // file contains string table
H A DelfSymbolTable.hpp12 * version 2 for more details (a copy is included in the LICENSE file that
36 * symbol table object represents a symbol section in an elf file.
38 * of the elf file into memory. Otherwise, it will walk the section in file
44 ElfSymbolTable(FILE* file, Elf_Shdr shdr);
59 // file contains string table
/openjdk7/jaxws/src/share/jaxws_classes/javax/jws/
H A DHandlerChain.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 * Location of the handler chain file.
51 * <li>A relative path from the source file or class file (ex: bar/handlerfile1.xml).
54 String file(); method in interface:HandlerChain
57 * Name of the handler chain in the configuration file
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Event.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
32 #error This file should not be included in headless library
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest4625418.java12 * version 2 for more details (a copy is included in the LICENSE file that
373 File file = new File("4625418." + this.encoding + ".xml");
375 FileOutputStream output = new FileOutputStream(file);
381 FileInputStream input = new FileInputStream(file);
390 file.delete();
393 throw new Error(this.encoding + " - file not found", exception);
/openjdk7/jdk/test/java/net/Inet6Address/serialize/
H A DSerialize.java12 * version 2 for more details (a copy is included in the LICENSE file that
72 File file = new File (System.getProperty("test.src"), "serial1.4.2.ser");
73 ois = new ObjectInputStream(new FileInputStream(file));
88 file = new File (System.getProperty("test.src"), "serial-bge0.ser");
89 ois = new ObjectInputStream(new FileInputStream(file));
/openjdk7/jdk/test/java/net/URLClassLoader/getresourceasstream/
H A Dtest.sh14 # version 2 for more details (a copy is included in the LICENSE file that
54 ${TESTJAVA}/bin/java -Djava.security.policy=file:./policy -Djava.security.manager Test
/openjdk7/jdk/test/java/nio/file/Files/walkFileTree/
H A DWalkWithSecurity.java12 * version 2 for more details (a copy is included in the LICENSE file that
33 import java.nio.file.*;
34 import java.nio.file.attribute.BasicFileAttributes;
57 // Install security manager with the given policy file
93 throw new RuntimeException("Starting file not visited");
95 throw new RuntimeException("More than starting file visited");
123 public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) { argument
124 System.out.println(file);
/openjdk7/jdk/test/sun/tools/jmap/
H A DBasic.sh14 # version 2 for more details (a copy is included in the LICENSE file that
56 ${JMAP} -J-XX:+UsePerfData -dump:format=b,file=${DUMPFILE} $appJavaPid
63 # dump file is large so remove it
67 ${JMAP} -J-XX:+UsePerfData -dump:live,format=b,file=${DUMPFILE} $appJavaPid
74 # dump file is large so remove it
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DReadZip.java12 * version 2 for more details (a copy is included in the LICENSE file that
26 @summary Make sure we can read a zip file.
30 import java.nio.file.Files;
31 import java.nio.file.Paths;
32 import java.nio.file.StandardCopyOption;
33 import java.nio.file.StandardOpenOption;
56 throw new Exception("cannot read from zip file");
60 // Make sure we can read the zip file that has some garbage
75 throw new Exception("cannot read from zip file");
81 // Read zip file commen
[all...]
/openjdk7/jdk/make/java/redist/fonts/
H A DMakefile8 # 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
80 $(install-file)
83 $(install-file)
94 $(install-file)
97 $(install-file)
/openjdk7/jdk/make/mkdemo/management/
H A DMakefile8 # 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 $(install-file)
/openjdk7/jdk/make/mksample/forkjoin/mergesort/
H A DMakefile8 # 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 $(install-file)
/openjdk7/jdk/make/mksample/nbproject/
H A DMakefile8 # 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
45 $(install-file)
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DGetORBPropertiesFileAction.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
72 File file = new File( fileName ) ;
73 if (!file.exists())
76 FileInputStream in = new FileInputStream( file ) ;
85 System.out.println( "ORB properties file " + fileName +
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DTestParser.java12 * version 2 for more details (a copy is included in the LICENSE file that
30 System.err.println("usage: java TestParser [file name]");
36 COFFFile file = COFFFileParser.getParser().parse(args[0]);
37 if (file.isImage()) {
40 System.out.println("PE Image NOT detected, assuming object file.");
42 COFFHeader header = file.getHeader();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DHeapDumper.java12 * version 2 for more details (a copy is included in the LICENSE file that
32 * process/core as a HPROF binary file. It can also be used as a standalone
48 System.out.println(" -f <file>\tto dump heap to <file>");
57 System.out.println("Heap dump file created");
64 // HeapDumper -f <file> <args...>
66 String file = DEFAULT_DUMP_FILE;
69 file = args[1];
76 HeapDumper dumper = new HeapDumper(file);
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DMappedReadBuffer.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
41 * Implementation of ReadBuffer using mapped file buffer
52 // factory method to create correct ReadBuffer for a given file
53 static ReadBuffer create(RandomAccessFile file) throws IOException { argument
54 FileChannel ch = file.getChannel();
56 // if file size is more than 2 GB and when file mapping is
57 // configured (default), use mapped file reade
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DOptions.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
190 * Remember info on generated source file generated so that it
193 public void addGeneratedFile(File file) { argument
194 generatedFiles.add(file);
201 for(File file : generatedFiles){
202 if (file.getName().endsWith(".java")) {
203 file.delete();
223 for (File file
391 fileToURL(File file) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Debug.h8 * 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
41 static void AssertCallback(const char * expr, const char * file,
59 extern void DumpClipRectangle(const char * file, int line, int argc, const char * fmt, va_list arglist);
60 extern void DumpUpdateRectangle(const char * file, int line, int argc, const char * fmt, va_list arglist);

Completed in 64 milliseconds

<<11121314151617181920>>