Home
last modified time | relevance | path

Searched refs:t (Results 151 – 175 of 396) sorted by relevance

12345678910>>...16

/art/libartbase/base/unix_file/
DREADME5 don't pay for what you don't use" apply.
10 This code will not log, because it can't know whether that's appropriate in
/art/test/004-ThreadStress/
Dthread_stress.cc31 extern "C" JNIEXPORT void JNICALL Java_Main_printThrowable(JNIEnv*, jclass, jthrowable t) { in Java_Main_printThrowable() argument
33 std::cout << soa.Decode<mirror::Throwable>(t)->Dump(); in Java_Main_printThrowable()
/art/test/1975-hello-structural-transformation/src/art/
DTest1975.java174 } catch (Throwable t) { in readMethodHandles()
175 if (t instanceof Exception) { in readMethodHandles()
176 throw (Exception)t; in readMethodHandles()
177 } else if (t instanceof Error) { in readMethodHandles()
178 throw (Error)t; in readMethodHandles()
180 throw new RuntimeException("Unexpected throwable thrown!", t); in readMethodHandles()
249 } catch (Throwable t) { in doTest()
250 throw new RuntimeException("something threw", t); in doTest()
/art/runtime/verifier/
Dreg_type.cc609 ObjPtr<mirror::Class> t,
613 ObjPtr<mirror::Class> InterfaceClassJoin(ObjPtr<mirror::Class> s, ObjPtr<mirror::Class> t)
637 ObjPtr<mirror::Class> t, in ClassJoin() argument
641 DCHECK(!t->IsPrimitive()) << t->PrettyClass(); in ClassJoin()
642 if (s == t) { in ClassJoin()
644 } else if (s->IsAssignableFrom(t)) { in ClassJoin()
646 } else if (t->IsAssignableFrom(s)) { in ClassJoin()
647 return t; in ClassJoin()
648 } else if (s->IsArrayClass() && t->IsArrayClass()) { in ClassJoin()
649 return ArrayClassJoin(s, t, class_linker); in ClassJoin()
[all …]
/art/openjdkjvmti/
Dti_logging.h77 JvmtiLogMessage& operator<<(T t) {
78 (real_log_stream_ << t);
79 (save_stream_ << t);
/art/test/158-app-image-class-table/src/
DMain.java41 } catch (Throwable t) { in main()
42 t.printStackTrace(System.out); in main()
/art/test/1913-get-set-local-objects/src/art/
DTest1913.java134 public void SetVar(Thread t, int depth, int slot, Object v); in SetVar() argument
137 public static interface GetterFunction { public Object GetVar(Thread t, int depth, int slot); } in GetVar() argument
142 public void invoke(Thread t, Method method, Locals.VariableDescription desc, int depth) { in NamedSet()
144 get.SetVar(t, depth, desc.slot, v); in NamedSet()
159 public void invoke(Thread t, Method method, Locals.VariableDescription desc, int depth) {
161 Object res = get.GetVar(t, depth, desc.slot);
274 for (TestCase t : MAIN_TEST_CASES) {
276 t.exec(s);
/art/test/807-method-handle-and-mr/src/
DMain.java44 } catch (Throwable t) { in execute()
46 System.err.println(t); in execute()
47 t.printStackTrace(new PrintStream(System.err)); in execute()
/art/runtime/native/
Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc156 static void ThreadStatsGetterCallback(Thread* t, void* context) { in ThreadStatsGetterCallback() argument
182 GetTaskStats(t->GetTid(), &native_thread_state, &utime, &stime, &task_cpu); in ThreadStatsGetterCallback()
185 Append4BE(bytes, t->GetThreadId()); in ThreadStatsGetterCallback()
186 Append1BE(bytes, ToJdwpThreadStatus(t->GetState())); in ThreadStatsGetterCallback()
187 Append4BE(bytes, t->GetTid()); in ThreadStatsGetterCallback()
190 Append1BE(bytes, t->IsDaemon()); in ThreadStatsGetterCallback()
/art/tools/jvmti-agents/dump-jvmti-state/
Ddump-jvmti.cc29 template <typename T> static void Dealloc(jvmtiEnv* env, T* t) { in Dealloc() argument
30 env->Deallocate(reinterpret_cast<unsigned char*>(t)); in Dealloc()
33 template <typename T, typename... Rest> static void Dealloc(jvmtiEnv* env, T* t, Rest... rs) { in Dealloc() argument
34 Dealloc(env, t); in Dealloc()
/art/tools/jvmti-agents/enable-vlog/
Denablevlog.cc43 void Dealloc(jvmtiEnv* env, T* t) { in Dealloc() argument
44 env->Deallocate(reinterpret_cast<unsigned char*>(t)); in Dealloc()
48 void Dealloc(jvmtiEnv* env, T* t, Rest... rs) { in Dealloc() argument
49 Dealloc(env, t); in Dealloc()
/art/test/1962-multi-thread-events/src/art/
DTest1962.java34 public static void HandleEvent(Thread t, List<String> events) { in HandleEvent() argument
35 events.add("Hit event on " + t.getName()); in HandleEvent()
82 public static native void setupThread(Thread t, List<String> events, Method target); in setupThread() argument
/art/test/127-checker-secondarydex/src/
DMain.java48 Test t = new Test(); in testString() local
49 System.out.println(t.toString()); in testString()
/art/test/1912-get-set-local-primitive/src/art/
DTest1912.java104 public void SetVar(Thread t, int depth, int slot, Object v); in SetVar() argument
107 public static interface GetterFunction { public Object GetVar(Thread t, int depth, int slot); } in GetVar() argument
112 public void invoke(Thread t, Method method, Locals.VariableDescription desc, int depth) { in NamedSet()
114 get.SetVar(t, depth, desc.slot, v); in NamedSet()
129 public void invoke(Thread t, Method method, Locals.VariableDescription desc, int depth) {
131 Object res = get.GetVar(t, depth, desc.slot);
246 for (TestCase t : MAIN_TEST_CASES) {
248 t.exec(s);
/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
DMonitors.java56 public final void DoWait(long t) throws Exception { in DoWait() argument
58 final long target = System.currentTimeMillis() + (t / 2); in DoWait()
59 while (v == calledNotify && (t < 0 || System.currentTimeMillis() < target)) { in DoWait()
60 wait(t); in DoWait()
96 return Arrays.toString(Arrays.stream(ts).map((Thread t) -> t.getName()).toArray()); in toNameList()
237 runner.setUncaughtExceptionHandler((t, e) -> { exe = e; }); in DoLock() argument
/art/test/jvmti-common/
DMonitors.java56 public final void DoWait(long t) throws Exception { in DoWait() argument
58 final long target = System.currentTimeMillis() + (t / 2); in DoWait()
59 while (v == calledNotify && (t < 0 || System.currentTimeMillis() < target)) { in DoWait()
60 wait(t); in DoWait()
96 return Arrays.toString(Arrays.stream(ts).map((Thread t) -> t.getName()).toArray()); in toNameList()
237 runner.setUncaughtExceptionHandler((t, e) -> { exe = e; }); in DoLock() argument
/art/test/1930-monitor-info/src/art/
DMonitors.java56 public final void DoWait(long t) throws Exception { in DoWait() argument
58 final long target = System.currentTimeMillis() + (t / 2); in DoWait()
59 while (v == calledNotify && (t < 0 || System.currentTimeMillis() < target)) { in DoWait()
60 wait(t); in DoWait()
96 return Arrays.toString(Arrays.stream(ts).map((Thread t) -> t.getName()).toArray()); in toNameList()
237 runner.setUncaughtExceptionHandler((t, e) -> { exe = e; }); in DoLock() argument
/art/test/1933-monitor-current-contended/src/art/
DMonitors.java56 public final void DoWait(long t) throws Exception { in DoWait() argument
58 final long target = System.currentTimeMillis() + (t / 2); in DoWait()
59 while (v == calledNotify && (t < 0 || System.currentTimeMillis() < target)) { in DoWait()
60 wait(t); in DoWait()
96 return Arrays.toString(Arrays.stream(ts).map((Thread t) -> t.getName()).toArray()); in toNameList()
237 runner.setUncaughtExceptionHandler((t, e) -> { exe = e; }); in DoLock() argument
/art/test/1932-monitor-events-misc/src/art/
DMonitors.java56 public final void DoWait(long t) throws Exception { in DoWait() argument
58 final long target = System.currentTimeMillis() + (t / 2); in DoWait()
59 while (v == calledNotify && (t < 0 || System.currentTimeMillis() < target)) { in DoWait()
60 wait(t); in DoWait()
96 return Arrays.toString(Arrays.stream(ts).map((Thread t) -> t.getName()).toArray()); in toNameList()
237 runner.setUncaughtExceptionHandler((t, e) -> { exe = e; }); in DoLock() argument
/art/test/1931-monitor-events/src/art/
DMonitors.java56 public final void DoWait(long t) throws Exception { in DoWait() argument
58 final long target = System.currentTimeMillis() + (t / 2); in DoWait()
59 while (v == calledNotify && (t < 0 || System.currentTimeMillis() < target)) { in DoWait()
60 wait(t); in DoWait()
96 return Arrays.toString(Arrays.stream(ts).map((Thread t) -> t.getName()).toArray()); in toNameList()
237 runner.setUncaughtExceptionHandler((t, e) -> { exe = e; }); in DoLock() argument
/art/test/534-checker-bce-deoptimization/src/
DMain.java34 double t; in foo1() local
40 t = -b[k]; in foo1()
41 foo2(k + 1000, t, b); in foo1()
/art/tools/class2greylist/src/com/android/class2greylist/
DStatus.java39 public void error(Throwable t) { in error() argument
41 t.printStackTrace(System.err); in error()
/art/test/048-reflect-v8/src/
DIsDefaultTest.java41 } catch (Throwable t) { in printIsDefault()
42 System.out.println(t); in printIsDefault()
/art/test/135-MirandaDispatch/src/
DMain.java55 } catch (Throwable t) { in main()
56 t.printStackTrace(System.out); in main()

12345678910>>...16