Home
last modified time | relevance | path

Searched refs:existing (Results 1 – 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
DNativeBuffers.java108 NativeBuffer existing = buffers[i]; in releaseNativeBuffer() local
109 if (existing.size() < buffer.size()) { in releaseNativeBuffer()
110 existing.cleaner().clean(); in releaseNativeBuffer()
DUnixFileSystemProvider.java484 UnixPath existing = UnixPath.toUnixPath(obj2); in createLink() local
491 existing.checkWrite(); in createLink()
494 link(existing, link); in createLink()
496 x.rethrowAsIOException(link, existing); in createLink()
DUnixNativeDispatcher.java122 static void link(UnixPath existing, UnixPath newfile) throws UnixException { in link() argument
123 NativeBuffer existingBuffer = copyToNativeBuffer(existing); in link()
/libcore/luni/src/test/java/libcore/java/nio/file/spi/
DFileSystemProviderTest.java151 Path existing = Paths.get("testfile"); in testCreateLink() local
154 provider.createLink(link, existing); in testCreateLink()
/libcore/toolchainapi/
DAndroid.bp22 // map to the existing ApiScopes supported by java_sdk_library (e.g. public,
/libcore/ojluni/src/main/java/java/nio/file/spi/
DFileSystemProvider.java685 public void createLink(Path link, Path existing) throws IOException { in createLink() argument
/libcore/ojluni/src/main/java/java/nio/file/
DFiles.java1085 public static Path createLink(Path link, Path existing) throws IOException {
1086 provider(link).createLink(link, existing);
/libcore/ojluni/src/main/native/
DUnixNativeDispatcher.c809 const char* existing = (const char*)jlong_to_ptr(existingAddress); in Java_sun_nio_fs_UnixNativeDispatcher_link0() local
812 RESTARTABLE(link(existing, newname), err); in Java_sun_nio_fs_UnixNativeDispatcher_link0()
/libcore/tools/expected_upstream/
DREADME.md133 2. Adding / updating a patch to an existing `ojluni/` file
/libcore/ojluni/src/main/java/java/nio/
DX-Buffer.java.template94 * existing $type$ array {#if[char]?or&#32;string} into a buffer.
98 * content, by {@link #wrap($type$[]) <i>wrapping</i>} an existing
100 * <a href="ByteBuffer.html#views"><i>view</i></a> of an existing byte buffer.
2190 * wrapping an existing {@code $type$} array is the {@link