OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pendingNext
(Results
1 - 6
of
6
) sorted by null
/libcore/luni/src/main/java/java/lang/ref/
ReferenceQueue.java
153
Reference<?> next = unenqueued.
pendingNext
;
154
unenqueued.
pendingNext
= list.
pendingNext
;
155
list.
pendingNext
= next;
Reference.java
131
public volatile Reference<?>
pendingNext
;
/libcore/libdvm/src/main/java/java/lang/
Daemons.java
145
//
pendingNext
is owned by the GC so no synchronization is required
146
if (list == list.
pendingNext
) {
148
reference.
pendingNext
= null;
151
reference = list.
pendingNext
;
152
list.
pendingNext
= reference.
pendingNext
;
153
reference.
pendingNext
= null;
/external/qemu/android/
looper-qemu.c
133
QLoopIo*
pendingNext
;
151
io->
pendingNext
= NULL;
324
io->
pendingNext
= looper->io_pending;
336
*pnode = io->
pendingNext
;
339
pnode = &(*pnode)->
pendingNext
;
341
io->
pendingNext
= NULL;
358
looper->io_pending = io->
pendingNext
;
359
io->
pendingNext
= NULL;
/libcore/libart/src/main/java/java/lang/
Daemons.java
148
//
pendingNext
is owned by the GC so no synchronization is required
149
if (list == list.
pendingNext
) {
151
reference.
pendingNext
= null;
154
reference = list.
pendingNext
;
155
list.
pendingNext
= reference.
pendingNext
;
156
reference.
pendingNext
= null;
/art/runtime/
class_linker.cc
481
mirror::ArtField*
pendingNext
= java_lang_ref_Reference->GetInstanceField(0);
482
FieldHelper fh(
pendingNext
, this);
483
CHECK_STREQ(fh.GetName(), "
pendingNext
");
510
pendingNext
->GetOffset(),
[
all
...]
Completed in 58 milliseconds