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 DForwardingOs.java44 * Subclass this if you want to override some {@link Os} methods but otherwise delegate.
103 public void link(String oldPath, String newPath) throws ErrnoException { os.link(oldPath, newPath); } method in class:ForwardingOs
H A DOs.java95 public void link(String oldPath, String newPath) throws ErrnoException; method in interface:Os
H A DPosix.java97 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}.
238 * See <a href="http://man7.org/linux/man-pages/man2/link.2.html">link(2)</a>.
240 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.java11 // removed link to collections framework docs
15 * A scalable concurrent {@link ConcurrentNavigableMap} implementation.
17 * ordering} of its keys, or by a {@link Comparator} provided at map
28 * the creation of the iterator. They do <em>not</em> throw {@link
52 * <em>optional</em> methods of the {@link Map} and {@link Iterator}
115 * link. This requires less space and supports faster
197 * using CAS to link and unlink. Races are allowed in index-list
198 * operations that can (rarely) fail to link in a new index node
543 * indexed is known to be deleted, it doesn't try to link i
548 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.cpp957 throwIfMinusOne(env, "link", TEMP_FAILURE_RETRY(link(oldPath.c_str(), newPath.c_str())));
1585 NATIVE_METHOD(Posix, link, "(Ljava/lang/String;Ljava/lang/String;)V"),

Completed in 127 milliseconds