Home
last modified time | relevance | path

Searched defs:t (Results 1 – 25 of 169) sorted by relevance

1234567

/art/test/924-threads/src/art/
DTest924.java35 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/
Dlocals_helper.cc48 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/
DTest1934.java82 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
DThreads.java20 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/
DFrames.java39 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
DOtherThread.java26 Thread t = new Thread("OtherThread doTestOtherThreadWait") { in doTestOtherThreadWait() local
60 Thread t = new Thread("OtherThread doTestOtherThreadBusyLoop") { in doTestOtherThreadBusyLoop() local
DPrintThread.java37 public static void print(Thread t, int start, int max) { in print()
60 Thread t = (Thread)stackInfo[0]; in printAll() local
DTest911.java21 Thread t = new Thread("Test911") { in run() local
/art/runtime/
Dintern_table_test.cc56 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/
DMain.java25 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/
Dsemi_space.cc65 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 …]
Dmark_sweep.cc84 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/
DTest991.java50 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/
DMain.java35 private static boolean isReaperThread(Thread t) { in isReaperThread()
46 Thread t = entry.getKey(); in checkManager() local
/art/test/1962-multi-thread-events/src/art/
DTest1962.java34 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/
DMain.java107 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/
DMain.java105 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/
DTestCase.java18 public void runTest(Transform t); in runTest()
DRemoveAnnotationsTest.java50 public void runTest(Transform t) { in runTest()
/art/test/202-thread-oome/src/
DMain.java19 Thread t = new Thread(null, new Runnable() { public void run() {} }, "", 3L*1024*1024*1024); in main() local
/art/test/923-monitors/src/art/
DTest923.java105 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/
Dlasterror.cc44 static void Dealloc(T* t) { in Dealloc()
49 static void Dealloc(T* t, Rest... rs) { in Dealloc()
/art/test/921-hello-failure/src/
DNewInterface.java49 public static void doTest(Transform2 t) { in doTest()
DUndefault.java54 public static void doTest(Transform5 t) { in doTest()
DNewName.java46 public static void doTest(Transform t) { in doTest()

1234567