Searched defs:file (Results 176 - 182 of 182) sorted by relevance

12345678

/libcore/ojluni/src/main/java/java/nio/file/
H A DFiles.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;
47 import java.nio.file.attribute.BasicFileAttributeView;
48 import java.nio.file.attribute.BasicFileAttributes;
49 import java.nio.file.attribute.DosFileAttributes; // javadoc
50 import java.nio.file.attribute.FileAttribute;
51 import java.nio.file.attribute.FileAttributeView;
52 import java.nio.file
[all...]
/libcore/ojluni/src/main/java/java/security/
H A DKeyStore.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
115 * // get user password and file input stream
223 * Constant to lookup in the Security properties file to determine
225 * In the Security properties file, the default keystore type is given as:
1745 * {@code file}.
1774 * @param file the File that contains the KeyStore data
1776 * @throws NullPointerException if type, file or protection is null
1779 * if file doe
1781 newInstance(String type, Provider provider, File file, ProtectionParameter protection) argument
1805 private final File file; field in class:KeyStore.Builder.FileBuilder
1814 FileBuilder(String type, Provider provider, File file, ProtectionParameter protection, AccessControlContext context) argument
[all...]
/libcore/luni/src/test/java/libcore/java/nio/file/
H A DFiles2Test.java5 * you may not use this file except in compliance with the License.
17 package libcore.java.nio.file;
37 import java.nio.file.AccessDeniedException;
38 import java.nio.file.CopyOption;
39 import java.nio.file.FileStore;
40 import java.nio.file.FileSystem;
41 import java.nio.file.FileSystemLoopException;
42 import java.nio.file.FileVisitOption;
43 import java.nio.file.FileVisitResult;
44 import java.nio.file
1855 visitFile(Path file, BasicFileAttributes attrs) argument
1864 visitFileFailed(Path file, IOException exc) argument
[all...]
/libcore/ojluni/src/main/native/
H A DUNIXProcess_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
85 * file descriptors.
168 * no standard (not even de-facto) header file where the
418 /* We're trying to close all file descriptors, but opendir() might
419 * itself be implemented using a file descriptor, and we certainly
421 * opendir() is implemented using a file descriptor, then it uses
422 * the lowest numbered file descriptor, just like open(). So we
432 * 6395699: /proc/self/fd fails to report file descriptor
534 execve_as_traditional_shell_script(const char *file, const char *argv[], const char *const envp[]) argument
558 execve_with_shell_fallback(const char *file, const char *argv[], const char *const envp[]) argument
582 JDK_execvpe(const char *file, const char *argv[], const char *const envp[]) argument
[all...]
H A Dzip_util.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
55 /* USE_MMAP means mmap the CEN & ENDHDR part of the zip file. */
60 #define MAXREFS 0xFFFF /* max number of open zip file references */
82 * respect to file access needs.
86 * Opens the named file for reading, returning a ZFILE.
151 * only on Solaris. Continue reading jar file in this case is the best
152 * thing to do since zip file reading is relatively fast and it is very onerous
162 * Initialize zip file suppor
927 jzfile *file = ZIP_Open_Generic(name, pmsg, O_RDONLY, 0); local
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
H A DFileChannelTest.java2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
213 // force on a read only file channel has no effect.
240 * Initializes test file.
242 * @param file
246 private void writeDataToFile(File file) throws FileNotFoundException, argument
248 FileOutputStream fos = new FileOutputStream(file);
257 * Initializes large test file.
259 * @param file th
264 writeLargeDataToFile(File file, int size) argument
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DFormatter.java9 * particular file as subject to the "Classpath" exception as provided
10 * by Oracle in the LICENSE file that accompanied this code.
15 * version 2 for more details (a copy is included in the LICENSE file that
119 * System.err.printf("Unable to open file '%1$s': %2$s",
121 * // -> "Unable to open file 'food': No such file or directory"
1898 private Formatter(Charset charset, Locale l, File file) argument
1902 new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), charset)));
1970 * Constructs a new formatter with the specified file name.
1982 * The name of the file t
2109 Formatter(File file) argument
2146 Formatter(File file, String csn) argument
2185 Formatter(File file, String csn, Locale l) argument
[all...]

Completed in 191 milliseconds

12345678