Searched refs:Thread (Results 26 - 50 of 117) sorted by relevance

12345

/dalvik/tests/059-finalizer-throw/src/
H A DMain.java33 Thread.sleep(500);
41 Thread.sleep(750);
/dalvik/vm/alloc/
H A DAlloc.h73 extern "C" void dvmAddTrackedAlloc(Object* obj, Thread* self);
82 extern "C" void dvmReleaseTrackedAlloc(Object* obj, Thread* self);
H A DHeap.cpp141 Thread *self;
164 Thread* self = dvmThreadSelf();
283 Thread *self;
362 Thread* self = dvmThreadSelf();
375 Thread* self = dvmThreadSelf();
718 Thread *self = dvmThreadSelf();
/dalvik/tests/002-sleep/src/
H A DMain.java12 Thread.sleep(millis);
/dalvik/tests/030-bad-finalizer/src/
H A DBadFinalizer.java9 Thread.sleep(ms);
/dalvik/vm/
H A DDdm.h46 void dvmDdmSendThreadNotification(Thread* thread, bool started);
H A DThread.cpp18 * Thread support.
121 active (the java.lang.Thread calls for this are deprecated and hence are
132 The VM maintains a Thread struct for every pthread known to the VM. There
133 is a java/lang/Thread object associated with every Thread. At present,
134 there is no safe way to go from a Thread object to a Thread struct except by
233 static Thread* allocThread(int interpStackSize);
234 static bool prepareThread(Thread* thread);
235 static void setThreadSelf(Thread* threa
[all...]
H A DSync.cpp73 Thread* owner; /* which thread currently owns the lock? */
77 Thread* waitSet; /* threads currently waiting on this monitor */
152 Thread *owner;
175 Thread* dvmGetObjectLockHolder(Object* obj)
188 bool dvmHoldsLock(Thread* thread, Object* obj)
266 static void logContentionEvent(Thread *self, u4 waitMs, u4 samplePercent,
342 static void lockMonitor(Thread* self, Monitor* mon)
415 static bool tryLockMonitor(Thread* self, Monitor* mon)
438 static bool unlockMonitor(Thread* self, Monitor* mon)
473 Thread *fas
[all...]
H A DNative.h79 const Method* method, struct Thread* self);
H A DDdm.cpp42 Thread* self = dvmThreadSelf();
164 Thread* self = dvmThreadSelf();
231 Thread* thread;
247 void dvmDdmSendThreadNotification(Thread* thread, bool started)
366 Thread* thread;
428 Thread* self = dvmThreadSelf();
429 Thread* thread;
/dalvik/vm/mterp/cstubs/
H A Dstubdefs.cpp7 extern "C" void dvmMterp_##_target(Thread* self, ## __VA_ARGS__);
11 void dvmMterp_##_target(Thread* self, ## __VA_ARGS__) { \
22 * Redefine what used to be local variable accesses into Thread struct
56 extern "C" void dvmMterp_##_op(Thread* self); \
57 void dvmMterp_##_op(Thread* self) { \
/dalvik/tests/067-preemptive-unpark/src/
H A DMain.java27 Thread.sleep(1500);
81 private static class ParkTester extends Thread {
88 Thread.sleep(500);
/dalvik/vm/native/
H A Djava_lang_Object.cpp64 const Method* method, Thread* self)
76 const Method* method, Thread* self)
88 const Method* method, Thread* self)
H A Djava_lang_VMThread.cpp25 * static void create(Thread t, long stacksize)
27 * This is eventually called as a result of Thread.start().
42 * static Thread currentThread()
55 * Gets the Thread status. Result is in VM terms, has to be mapped to
56 * Thread.State by interpreted code.
61 Thread* thread;
85 Thread* thread;
108 Thread* thread;
126 Thread* self = dvmThreadSelf();
146 Thread* threa
[all...]
/dalvik/tests/084-class-init/src/
H A DMain.java25 Thread.sleep(msec);
77 static class FieldThread extends Thread {
96 static class MethodThread extends Thread {
/dalvik/vm/compiler/codegen/x86/
H A DAssemble.cpp102 Thread *self,
H A DCalloutHelper.h34 bool dvmUnlockObject(struct Thread* self, struct Object* obj); //OP_MONITOR_EXIT
/dalvik/tests/088-monitor-verification/src/
H A DMain.java94 Class thing = Thread.class;
95 synchronized (Thread.class) {}
/dalvik/vm/compiler/codegen/arm/
H A DCalloutHelper.h67 bool dvmUnlockObject(struct Thread* self, struct Object* obj); //OP_MONITOR_EXIT
85 Thread *self,
/dalvik/tests/048-server-socket/src/
H A DMain.java13 Thread.sleep(sec * 1000);
/dalvik/vm/compiler/codegen/x86/ia32/
H A DArchVariant.cpp78 assert((offsetof(Thread, jitToInterpEntries) +
/dalvik/vm/mterp/
H A DMterp.cpp74 void dvmMterpStd(Thread* self)
/dalvik/vm/mterp/x86-atom/
H A DOP_MONITOR_ENTER.S44 call dvmLockObject # call: (struct Thread* self,
H A DOP_MONITOR_EXIT.S39 call dvmUnlockObject # call: (struct Thread* self,
/dalvik/vm/interp/
H A DStack.cpp38 bool dvmInitInterpStack(Thread* thread, int stackSize)
63 static bool dvmPushInterpFrame(Thread* self, const Method* method)
139 bool dvmPushJNIFrame(Thread* self, const Method* method)
215 bool dvmPushLocalFrame(Thread* self, const Method* method)
275 bool dvmPopLocalFrame(Thread* self)
309 static bool dvmPopFrame(Thread* self)
355 static ClassObject* callPrep(Thread* self, const Method* method, Object* obj,
424 void dvmCallMethod(Thread* self, const Method* method, Object* obj,
442 void dvmCallMethodV(Thread* self, const Method* method, Object* obj,
548 void dvmCallMethodA(Thread* sel
[all...]

Completed in 1483 milliseconds

12345