Searched refs:unlink (Results 1 - 25 of 48) sorted by relevance

12

/openjdk9/jdk/src/java.desktop/unix/native/common/awt/
H A DCUPSfuncs.c271 // unlink() must be caled to remove the file when finished using it.
280 unlink(filename);
298 unlink(filename);
310 unlink(filename);
320 unlink(filename);
334 unlink(filename);
345 unlink(filename);
357 unlink(filename);
387 // unlink() must be called to remove the file after using it.
392 unlink(filenam
[all...]
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DLinkedMap.java198 unlink(node);
240 private void unlink(final Node oldNode) { method in class:LinkedMap
241 // Note that we unlink references to the node being deleted, but keep the references from the deleted node.
/openjdk9/hotspot/src/share/vm/gc/g1/
H A Dg1StringDedup.hpp132 static void unlink(BoolObjectClosure* is_alive);
H A Dg1StringDedup.cpp112 void G1StringDedup::unlink(BoolObjectClosure* is_alive) { function in class:G1StringDedup
114 // Don't allow a potential resize or rehash during unlink, as the unlink
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/beans/util/
H A DCache.java174 entry.unlink();
195 entry.unlink();
284 entry.unlink();
307 entry.unlink();
361 private void unlink() { method in class:Cache.CacheEntry
/openjdk9/jdk/src/java.base/unix/classes/sun/nio/fs/
H A DUnixCopyFile.java298 unlink(target);
371 try { unlink(target); } catch (UnixException ignore) { }
442 unlink(target);
486 unlink(source);
489 // file was copied but unable to unlink the source file so attempt
495 unlink(target);
550 // 3. try to unlink the target
561 unlink(target);
/openjdk9/hotspot/src/share/vm/gc/serial/
H A DgenMarkSweep.cpp238 StringTable::unlink(&is_alive);
244 SymbolTable::unlink();
/openjdk9/hotspot/src/share/vm/classfile/
H A DstringTable.hpp104 static void unlink(BoolObjectClosure* cl) { function in class:StringTable
110 static void unlink(BoolObjectClosure* cl, int* processed, int* removed) { function in class:StringTable
H A DsymbolTable.hpp205 static void unlink() { function in class:SymbolTable
208 unlink(&processed, &removed);
210 static void unlink(int* processed, int* removed);
H A Ddictionary.hpp105 void unlink(BoolObjectClosure* is_alive);
216 void unlink(BoolObjectClosure* cl);
/openjdk9/hotspot/src/os/aix/vm/
H A DattachListener_aix.cpp168 // atexit hook to stop listener and unlink the file that it is
188 ::unlink(AixAttachListener::path());
224 ::unlink(initial_path);
242 ::unlink(initial_path);
495 ret = ::unlink(fn);
/openjdk9/hotspot/src/os/bsd/vm/
H A DattachListener_bsd.cpp152 // atexit hook to stop listener and unlink the file that it is
164 ::unlink(BsdAttachListener::path());
199 ::unlink(initial_path);
221 ::unlink(initial_path);
457 ret = ::unlink(fn);
H A DperfMemory_bsd.cpp350 // NOTE: The code below uses fchdir(), open() and unlink() because
647 // if the file is a directory, the following unlink will fail. since
652 RESTARTABLE(::unlink(path), result);
655 warning("Could not unlink shared memory backing"
702 unlink(entry->d_name);
725 unlink(entry->d_name);
/openjdk9/hotspot/src/share/vm/runtime/
H A DvmThread.hpp56 void unlink(VM_Operation* q);
H A DvmThread.cpp93 void VMOperationQueue::unlink(VM_Operation* q) { function in class:VMOperationQueue
105 unlink(r);
/openjdk9/hotspot/src/os/linux/vm/
H A DattachListener_linux.cpp152 // atexit hook to stop listener and unlink the file that it is
164 ::unlink(LinuxAttachListener::path());
199 ::unlink(initial_path);
216 ::unlink(initial_path);
454 ret = ::unlink(fn);
H A DperfMemory_linux.cpp349 // NOTE: The code below uses fchdir(), open() and unlink() because
659 // if the file is a directory, the following unlink will fail. since
664 RESTARTABLE(::unlink(path), result);
667 warning("Could not unlink shared memory backing"
713 unlink(entry->d_name);
735 unlink(entry->d_name);
/openjdk9/jdk/src/java.base/share/classes/java/util/
H A DLinkedList.java213 E unlink(Node<E> x) { method in class:LinkedList
363 unlink(x);
370 unlink(x);
530 return unlink(node(index));
834 unlink(x);
841 unlink(x);
930 unlink(lastReturned);
/openjdk9/hotspot/src/share/vm/utilities/
H A DglobalDefinitions_visCPP.hpp160 #define unlink _unlink macro
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/instrumentation/
H A DExtractInstrumentationPhase.java86 instrumentation.unlink();
205 void unlink() { method in class:ExtractInstrumentationPhase.Instrumentation
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/
H A DVariableStack.java138 // (As long as the caller doesn't screw up link/unlink.)
169 * <p>I use the link/unlink concept because of distant
213 public void unlink() method in class:VariableStack
223 * after the unlink.
225 public void unlink(int currentFrame) method in class:VariableStack
/openjdk9/jdk/src/java.base/share/classes/java/util/concurrent/
H A DConcurrentLinkedDeque.java379 void unlink(Node<E> x) { method in class:ConcurrentLinkedDeque
405 // predecessor/successor, we additionally try to gc-unlink,
468 // Try to gc-unlink, if possible
480 // Finally, actually gc-unlink
506 // Finally, actually gc-unlink
541 // Finally, actually gc-unlink
904 unlink(p);
916 unlink(p);
1004 unlink(p);
1030 unlink(
[all...]
H A DLinkedBlockingDeque.java289 void unlink(Node<E> x) { method in class:LinkedBlockingDeque
584 unlink(p);
601 unlink(p);
1153 unlink(n);
1393 unlink(q);
H A DLinkedBlockingQueue.java512 void unlink(Node<E> p, Node<E> pred) { method in class:LinkedBlockingQueue
544 unlink(p, pred);
772 private Node<E> ancestor; // Helps unlink lastRet on remove()
857 unlink(p, ancestor);
1095 unlink(q, ancestor);
/openjdk9/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp370 ::unlink(path);
433 ::unlink(initial_path);
606 ret = ::unlink(fn);

Completed in 233 milliseconds

12