Searched defs:existing (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/file/spi/
H A DFileSystemProvider.java65 * obtain a reference to an existing file system created by the provider. Where
231 * Returns an existing {@code FileSystem} created by this provider.
253 * existing file system. In the case of the {@link FileSystems#getDefault
658 * Creates a new link (directory entry) for an existing file. This method
667 * @param existing
668 * a path to an existing file
671 * if the implementation does not support adding an existing file
683 * existing file.
685 public void createLink(Path link, Path existing) throws IOException { argument
/libcore/ojluni/src/main/java/java/nio/file/
H A DFiles.java171 * exist, or initially truncating an existing {@link #isRegularFile
178 * // truncate and overwrite an existing file, or create the file if
182 * // append to an existing file, fail if the file does not exist
185 * // append to an existing file, create file if it doesn't initially exist
248 * <td> If this option is present then the existing file is truncated to
262 * <td> If this option is present then an existing file is opened if it
313 * // open file for writing to the end of an existing file, creating
754 // unable to find existing parent
1048 * Creates a new link (directory entry) for an existing file <i>(optional
1052 * The {@code existing} paramete
1085 createLink(Path link, Path existing) argument
[all...]
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DUnixNativeDispatcher.java120 * link(const char* existing, const char* new)
122 static void link(UnixPath existing, UnixPath newfile) throws UnixException { argument
123 NativeBuffer existingBuffer = copyToNativeBuffer(existing);
/libcore/ojluni/src/main/native/
H A DUnixNativeDispatcher.c755 const char* existing = (const char*)jlong_to_ptr(existingAddress); local
758 RESTARTABLE(link(existing, newname), err);

Completed in 535 milliseconds