Home
last modified time | relevance | path

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

/art/test/1953-pop-frame/
Dpop_frame.cc94 jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbSingleStep()
113 jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbExceptionCatch()
134 jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbException()
151 jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbMethodEntry()
170 jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbMethodExit()
193 jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbFieldModification()
215 jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbFieldAccess()
234 jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbBreakpointHit()
262 jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbFramePop()
276 jvmti->GetThreadLocalStorage(thr, reinterpret_cast<void**>(&data)))) { in cbClassLoadOrPrepare()
[all …]
/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/1962-multi-thread-events/
Dmulti_thread_events.cc45 env, jvmti, jvmti->GetThreadLocalStorage(thread, reinterpret_cast<void**>(&data)))) { in cbMethodEntry()
/art/openjdkjvmti/
Dti_thread.h103 static jvmtiError GetThreadLocalStorage(jvmtiEnv* env, jthread thread, void** data_ptr);
DOpenjdkJvmTi.cc251 static jvmtiError GetThreadLocalStorage(jvmtiEnv* env, jthread thread, void** data_ptr) { in GetThreadLocalStorage() function in openjdkjvmti::JvmtiFunctions
253 return ThreadUtil::GetThreadLocalStorage(env, thread, data_ptr); in GetThreadLocalStorage()
1681 JvmtiFunctions::GetThreadLocalStorage,
Dti_thread.cc722 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()
/art/test/ti-agent/
Dtrace_helper.cc34 jvmti->GetThreadLocalStorage(thr, &data); in IsInCallback()