Searched refs:link (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DLinkedList.java27 * LinkedList is an implementation of {@link List}, backed by a doubly-linked list.
35 * probably use {@link ArrayList} if you don't need the queue-like behavior.
65 Link<ET> link, lastLink; field in class:LinkedList.LinkIterator
73 // if link == voidLink then pos must == -1
74 link = list.voidLink;
77 link = link.next;
81 link = link.previous;
91 Link<ET> next = link
193 private Link<ET> link; field in class:LinkedList.ReverseLinkIterator
[all...]
/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java156 @Override public void link(String oldPath, String newPath) throws ErrnoException { method in class:BlockGuardOs
158 os.link(oldPath, newPath);
H A DOs.java99 public void link(String oldPath, String newPath) throws ErrnoException; method in interface:Os
H A DForwardingOs.java44 * Subclass this if you want to override some {@link Os} methods but otherwise delegate.
107 public void link(String oldPath, String newPath) throws ErrnoException { os.link(oldPath, newPath); } method in class:ForwardingOs
H A DPosix.java101 public native void link(String oldPath, String newPath) throws ErrnoException; method in class:Posix
/libcore/luni/src/main/java/android/system/
H A DOs.java35 * <p>The corresponding constants can be found in {@link OsConstants}.
249 * See <a href="http://man7.org/linux/man-pages/man2/link.2.html">link(2)</a>.
251 public static void link(String oldPath, String newPath) throws ErrnoException { Libcore.os.link(oldPath, newPath); } method in class:Os
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java12 // removed link to collections framework docs
16 * A scalable concurrent {@link ConcurrentNavigableMap} implementation.
18 * ordering} of its keys, or by a {@link Comparator} provided at map
29 * the creation of the iterator. They do <em>not</em> throw {@link
53 * <em>optional</em> methods of the {@link Map} and {@link Iterator}
116 * link. This requires less space and supports faster
198 * using CAS to link and unlink. Races are allowed in index-list
199 * operations that can (rarely) fail to link in a new index node
552 * indexed is known to be deleted, it doesn't try to link i
557 final boolean link(Index<K,V> succ, Index<K,V> newSucc) { method in class:ConcurrentSkipListMap.Index
[all...]
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp1163 throwIfMinusOne(env, "link", TEMP_FAILURE_RETRY(link(oldPath.c_str(), newPath.c_str())));
1913 NATIVE_METHOD(Posix, link, "(Ljava/lang/String;Ljava/lang/String;)V"),

Completed in 314 milliseconds