OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:unenqueued
(Results
1 - 4
of
4
) sorted by null
/libcore/ojluni/src/main/java/java/lang/ref/
ReferenceQueue.java
213
* Enqueue the given list of currently pending (
unenqueued
) references.
257
public static Reference<?>
unenqueued
= null;
field in class:ReferenceQueue
261
if (
unenqueued
== null) {
262
unenqueued
= list;
264
// Find the last element in
unenqueued
.
265
Reference<?> last =
unenqueued
;
266
while (last.pendingNext !=
unenqueued
) {
275
last.pendingNext =
unenqueued
;
/libcore/luni/src/main/java/java/lang/ref/
FinalizerReference.java
107
// Make a single element list, then enqueue the reference on the daemon
unenqueued
112
// Make circular list if
unenqueued
goes through native so that we can prevent
/libcore/libart/src/main/java/java/lang/
Daemons.java
149
while (ReferenceQueue.
unenqueued
== null) {
152
list = ReferenceQueue.
unenqueued
;
153
ReferenceQueue.
unenqueued
= null;
/art/runtime/gc/collector/
concurrent_copying.cc
[
all
...]
Completed in 450 milliseconds