Home
last modified time | relevance | path

Searched refs:GetThreadLocalStorage (Results 1 – 13 of 13) sorted by relevance

/art/test/ti-agent/
Dsuspend_event_helper.cc91 jvmti->GetThreadLocalStorage(/* thread */ nullptr, reinterpret_cast<void**>(&data)))) { in PerformSuspension()
102 env, jvmti, jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbSingleStep()
120 env, jvmti, jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbExceptionCatch()
140 env, jvmti, jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbException()
153 env, jvmti, jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbMethodEntry()
171 env, jvmti, jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbMethodExit()
193 env, jvmti, jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbFieldModification()
214 env, jvmti, jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbFieldAccess()
229 env, jvmti, jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbBreakpointHit()
254 env, jvmti, jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbFramePop()
[all …]
Dtrace_helper.cc34 jvmti->GetThreadLocalStorage(thr, &data); in IsInCallback()
/art/test/1909-per-agent-tls/
Dinfo.txt1 Tests jvmti behavior of GetThreadLocalStorage with multiple threads.
Dagent_tls.cc46 reinterpret_cast<jvmtiEnv*>(jvmti_env_ptr)->GetThreadLocalStorage(thr, &res)); in Java_art_Test1909_getTLS()
/art/test/1970-force-early-return-long/
Dforce_early_return_long.cc56 jvmti_env->GetThreadLocalStorage(/* thread */ nullptr, in Java_art_Test1970_00024NativeCalledObject_calledFunction()
/art/test/1968-force-early-return/
Dforce_early_return.cc58 jvmti_env->GetThreadLocalStorage(/* thread */ nullptr, in Java_art_Test1968_00024NativeCalledObject_calledFunction()
/art/test/1969-force-early-return-void/
Dforce_early_return_void.cc54 jvmti_env->GetThreadLocalStorage(/* thread */ nullptr, in Java_art_Test1969_00024NativeCalledObject_calledFunction()
/art/test/1962-multi-thread-events/
Dmulti_thread_events.cc45 env, jvmti, jvmti->GetThreadLocalStorage(thread, reinterpret_cast<void**>(&data)))) { in cbMethodEntry()
/art/openjdkjvmti/
Dti_thread.h107 static jvmtiError GetThreadLocalStorage(jvmtiEnv* env, jthread thread, void** data_ptr);
DOpenjdkJvmTi.cc253 static jvmtiError GetThreadLocalStorage(jvmtiEnv* env, jthread thread, void** data_ptr) { in GetThreadLocalStorage() function in openjdkjvmti::JvmtiFunctions
255 return ThreadUtil::GetThreadLocalStorage(env, thread, data_ptr); in GetThreadLocalStorage()
1606 JvmtiFunctions::GetThreadLocalStorage,
Dti_thread.cc725 jvmtiError ThreadUtil::GetThreadLocalStorage(jvmtiEnv* env, in GetThreadLocalStorage() function in openjdkjvmti::ThreadUtil
/art/test/924-threads/
Dthreads.cc172 jvmtiError result = jvmti_env->GetThreadLocalStorage(thread, &tls); in Java_art_Test924_getTLS()
/art/openjdkjvmti/include/
Djvmti.h1527 jvmtiError (JNICALL *GetThreadLocalStorage) (jvmtiEnv* env,
1877 jvmtiError GetThreadLocalStorage(jthread thread, in GetThreadLocalStorage() function
1879 return functions->GetThreadLocalStorage(this, thread, data_ptr); in GetThreadLocalStorage()