| /art/test/924-threads/src/art/ |
| D | Test924.java | 35 Thread t = new Thread("TestThread") { in run() local 152 Thread t = mkThread.apply(r); in doStateTests() local 220 private static void waitForState(Thread t, int desired) throws Exception { in waitForState() 242 Thread t = it.next(); in doAllThreadsTests() local 284 Thread t = new Thread(); in doTLSNonLiveTests() local 328 Thread t = new Thread(r); in doTLSLiveTests() local 357 Thread t = new Thread(r, "EventTestThread"); in doTestEvents() local 406 private static void printMajorityThreadState(Thread t, int votes, int wait) throws Exception { in printMajorityThreadState() 424 private static void printThreadState(Thread t) { in printThreadState() 447 private static void printThreadInfo(Thread t) { in printThreadInfo() [all …]
|
| /art/test/ti-agent/ |
| D | locals_helper.cc | 48 jthread t, in Java_art_Locals_SetLocalVariableObject() 57 jthread t, in Java_art_Locals_SetLocalVariableDouble() 66 jthread t, in Java_art_Locals_SetLocalVariableFloat() 75 jthread t, in Java_art_Locals_SetLocalVariableLong() 84 jthread t, in Java_art_Locals_SetLocalVariableInt() 93 jthread t, in Java_art_Locals_GetLocalVariableDouble() 103 jthread t, in Java_art_Locals_GetLocalVariableFloat() 113 jthread t, in Java_art_Locals_GetLocalVariableLong() 123 jthread t, in Java_art_Locals_GetLocalVariableInt() 133 jthread t, in Java_art_Locals_GetLocalInstance() [all …]
|
| /art/test/1934-jvmti-signal-thread/src/art/ |
| D | Test1934.java | 82 target.setUncaughtExceptionHandler((t, e) -> { out_err[0] = e; }); in testStopBeforeStart() argument 101 target.setUncaughtExceptionHandler((t, e) -> { out_err[0] = e; }); in testInterruptBeforeStart() argument 130 target.setUncaughtExceptionHandler((t, e) -> { out_err[0] = e; }); in testStopWait() argument 157 target.setUncaughtExceptionHandler((t, e) -> { out_err[0] = e; }); in testInterruptWait() argument 185 target.setUncaughtExceptionHandler((t, e) -> { out_err[0] = e; }); in testStopInNative() argument 227 target.setUncaughtExceptionHandler((t, e) -> { out_err[0] = e; }); in testStopRecur() argument 250 target.setUncaughtExceptionHandler((t, e) -> { out_err[0] = e; }); in testInterruptRecur() argument 266 target.setUncaughtExceptionHandler((t, e) -> { out_err[0] = e; }); in testStopSpinning() argument
|
| D | Threads.java | 20 public static native void interruptThread(Thread t); in interruptThread() 21 public static native void stopThread(Thread t, Throwable thr); in stopThread()
|
| /art/test/911-get-stack-trace/src/art/ |
| D | Frames.java | 39 Thread t = Thread.currentThread(); in doTestSameThread() local 64 Thread t = new Thread("Frames doTestOtherThreadWait") { in doTestOtherThreadWait() local 102 Thread t = new Thread("Frames doTestOtherThreadBusyLoop") { in doTestOtherThreadBusyLoop() local
|
| D | OtherThread.java | 26 Thread t = new Thread("OtherThread doTestOtherThreadWait") { in doTestOtherThreadWait() local 60 Thread t = new Thread("OtherThread doTestOtherThreadBusyLoop") { in doTestOtherThreadBusyLoop() local
|
| D | PrintThread.java | 37 public static void print(Thread t, int start, int max) { in print() 60 Thread t = (Thread)stackInfo[0]; in printAll() local
|
| D | Test911.java | 21 Thread t = new Thread("Test911") { in run() local
|
| /art/runtime/ |
| D | intern_table_test.cc | 56 InternTable t; in TEST_F() local 75 InternTable t; in TEST_F() local 116 InternTable t; in TEST_F() local 151 InternTable t; in TEST_F() local 162 InternTable t; in TEST_F() local 177 InternTable t; in TEST_F() local 190 InternTable t; in TEST_F() local
|
| /art/test/203-multi-checkpoint/src/ |
| D | Main.java | 25 Thread t = new Thread(Main::runTargetThread, "Target Thread"); in main() local 44 public static native void pushCheckpoints(Thread t); in pushCheckpoints()
|
| /art/runtime/gc/collector/ |
| D | semi_space.cc | 65 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in BindBitmaps() local 147 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in InitializePhase() local 177 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in MarkingPhase() local 334 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in MarkReachableObjects() local 427 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in ReclaimPhase() local 640 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in MarkRoots() local 645 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in SweepSystemWeaks() local 654 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in Sweep() local 737 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in ProcessMarkStack() local 805 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in FinishPhase() local [all …]
|
| D | mark_sweep.cc | 84 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in BindBitmaps() local 117 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in InitializePhase() local 188 TimingLogger::ScopedTiming t("(Paused)PausePhase", GetTimings()); in PausePhase() local 222 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in PreCleanCards() local 252 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in RevokeAllThreadLocalAllocationStacks() local 259 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in MarkingPhase() local 321 TimingLogger::ScopedTiming t(name, GetTimings()); in UpdateAndMarkModUnion() local 341 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in ReclaimPhase() local 366 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in FindDefaultSpaceBitmap() local 631 TimingLogger::ScopedTiming t(__FUNCTION__, GetTimings()); in MarkRoots() local [all …]
|
| /art/test/991-field-trace-2/src/art/ |
| D | Test991.java | 50 public void handleFieldAccess(Executable m, long l, Class<?> fk, Object t, Field f) {} in handleFieldAccess() 51 public void handleFieldModify(Executable m, long l, Class<?> fk, Object t, Field f, Object v) {} in handleFieldModify() 61 public void handleFieldAccess(Executable m, long l, Class<?> fk, Object t, Field f) { in handleFieldAccess() 67 public void handleFieldModify(Executable m, long l, Class<?> fk, Object t, Field f, Object v) { in handleFieldModify() 73 public void handleFieldModify(Executable m, long l, Class<?> fk, Object t, Field f, Object v) { in handleFieldModify() 79 public void handleFieldAccess(Executable m, long l, Class<?> fk, Object t, Field f) { in handleFieldAccess() 88 public void handleFieldModify(Executable m, long l, Class<?> fk, Object t, Field f, Object v) { in handleFieldModify() 97 public void handleFieldAccess(Executable m, long l, Class<?> fk, Object t, Field f) { in handleFieldAccess()
|
| /art/test/063-process-manager/src/ |
| D | Main.java | 35 private static boolean isReaperThread(Thread t) { in isReaperThread() 46 Thread t = entry.getKey(); in checkManager() local
|
| /art/test/1962-multi-thread-events/src/art/ |
| D | Test1962.java | 34 public static void HandleEvent(Thread t, List<String> events) { in HandleEvent() 82 public static native void setupThread(Thread t, List<String> events, Method target); in setupThread()
|
| /art/test/1960-obsolete-jit-multithread-native/src/ |
| D | Main.java | 107 public static void doTest(Transform t) throws Exception { in doTest() 181 private Transform t; field in Main.TestThread 185 public TestThread(Transform t, in TestThread()
|
| /art/test/1961-obsolete-jit-multithread/src/ |
| D | Main.java | 105 public static void doTest(Transform t) throws Exception { in doTest() 179 private Transform t; field in Main.TestThread 183 public TestThread(Transform t, in TestThread()
|
| /art/test/948-change-annotations/src/ |
| D | TestCase.java | 18 public void runTest(Transform t); in runTest()
|
| D | RemoveAnnotationsTest.java | 50 public void runTest(Transform t) { in runTest()
|
| /art/test/202-thread-oome/src/ |
| D | Main.java | 19 Thread t = new Thread(null, new Runnable() { public void run() {} }, "", 3L*1024*1024*1024); in main() local
|
| /art/test/923-monitors/src/art/ |
| D | Test923.java | 105 Thread t = new Thread(r); in threadTests() local 208 String t = it.next(); in expect() local 282 Thread t = new Thread(r); in startWatchdog() local
|
| /art/test/1957-error-ext/ |
| D | lasterror.cc | 44 static void Dealloc(T* t) { in Dealloc() 49 static void Dealloc(T* t, Rest... rs) { in Dealloc()
|
| /art/test/921-hello-failure/src/ |
| D | NewInterface.java | 49 public static void doTest(Transform2 t) { in doTest()
|
| D | Undefault.java | 54 public static void doTest(Transform5 t) { in doTest()
|
| D | NewName.java | 46 public static void doTest(Transform t) { in doTest()
|