Searched refs:jthread (Results 51 - 70 of 70) sorted by relevance

123

/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_init.c879 static void reset_class_load_status(JNIEnv *env, jthread thread);
922 reset_class_load_status(JNIEnv *env, jthread thread)
1143 cbVMInit(jvmtiEnv *jvmti, JNIEnv *env, jthread thread)
1430 cbThreadStart(jvmtiEnv *jvmti, JNIEnv *env, jthread thread)
1441 cbThreadEnd(jvmtiEnv *jvmti, JNIEnv *env, jthread thread)
1586 cbClassLoad(jvmtiEnv *jvmti, JNIEnv *env, jthread thread, jclass klass)
1609 cbClassPrepare(jvmtiEnv *jvmti, JNIEnv *env, jthread thread, jclass klass)
1667 jthread thread, jmethodID method, jlocation location,
1680 jthread thread, jobject object, jlong timeout)
1692 jthread threa
[all...]
H A Dhprof_util.c326 setEventNotificationMode(jvmtiEventMode mode, jvmtiEvent event, jthread thread)
581 jthread thread;
807 getOwnedMonitorInfo(jthread thread, jobject **ppobjects, jint *pcount)
1323 getThreadLocalStorage(jthread thread)
1344 setThreadLocalStorage(jthread thread, void *ptr)
1361 getThreadState(jthread thread, jint *threadState)
1376 getThreadInfo(jthread thread, jvmtiThreadInfo *info)
1545 jthread thread;
1592 getThreadCpuTime(jthread thread)
1609 getFrameCount(jthread threa
[all...]
H A Dhprof_trace.c529 trace_get_current(jthread thread, SerialNumber thread_serial_num,
564 trace_get_all_current(jint thread_count, jthread *threads,
633 trace_increment_all_sample_costs(jint thread_count, jthread *threads,
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp130 JavaThread* jthread = JavaThread::current(); local
131 if (jthread->has_last_Java_frame()) {
132 vframeStream vfst(jthread);
2705 JVM_ENTRY(void, JVM_StartThread(JNIEnv* env, jobject jthread))
2727 if (java_lang_Thread::thread(JNIHandles::resolve_non_null(jthread)) != NULL) {
2734 java_lang_Thread::stackSize(JNIHandles::resolve_non_null(jthread));
2750 native_thread->prepare(jthread);
2781 JVM_ENTRY(void, JVM_StopThread(JNIEnv* env, jobject jthread, jobject throwable))
2788 oop java_thread = JNIHandles::resolve_non_null(jthread);
2817 JVM_ENTRY(jboolean, JVM_IsThreadAlive(JNIEnv* env, jobject jthread))
2984 oop jthread = thread->threadObj(); variable
3114 is_trusted_frame(JavaThread* jthread, vframeStream* vfst) argument
[all...]
H A DjvmtiEnv.cpp162 JvmtiEnv::GetThreadLocalStorage(jthread thread, void** data_ptr) {
173 // from native so as to resolve the jthread.
373 JvmtiEnv::SetEventNotificationMode(jvmtiEventMode mode, jvmtiEvent event_type, jthread event_thread, ...) {
671 JvmtiEnv::GetThreadState(jthread thread, jint* thread_state_ptr) {
713 JvmtiEnv::GetCurrentThread(jthread* thread_ptr) {
715 *thread_ptr = (jthread)JNIHandles::make_local(current_thread, current_thread->threadObj());
723 JvmtiEnv::GetAllThreads(jint* threads_count_ptr, jthread** threads_ptr) {
747 jthread *jthreads = new_jthreadArray(nthreads, thread_objs);
788 JvmtiEnv::SuspendThreadList(jint request_count, const jthread* request_list, jvmtiError* results) {
872 JvmtiEnv::ResumeThreadList(jint request_count, const jthread* request_lis
[all...]
H A DjvmtiExport.cpp208 jthread _jt;
213 _jt = (jthread)(to_jobject(thread->threadObj()));
215 jthread jni_thread() { return _jt; }
976 jthread jt = (jthread)JNIHandles::make_local(real_thread, real_thread->threadObj());
H A Dunsafe.cpp1221 UNSAFE_ENTRY(void, Unsafe_Unpark(JNIEnv *env, jobject unsafe, jobject jthread))
1224 if (jthread != NULL) {
1225 oop java_thread = JNIHandles::resolve_non_null(jthread);
1236 java_thread = JNIHandles::resolve_non_null(jthread);
H A Djvm.h295 JVM_SetNativeThreadName(JNIEnv *env, jobject jthread, jstring name);
/openjdk7/jdk/src/share/instrument/
H A DJPLISAgent.h120 jthread thread);
H A DInvocationAdapter.c455 jthread thread) {
/openjdk7/jdk/src/share/back/
H A DEventRequestImpl.c77 jthread thread;
183 jthread thread;
H A DdebugInit.c97 static void JNICALL cbEarlyVMInit(jvmtiEnv*, JNIEnv *, jthread);
100 jthread, jmethodID, jlocation, jobject, jmethodID, jlocation);
102 static void initialize(JNIEnv *env, jthread thread, EventIndex triggering_ei);
451 cbEarlyVMInit(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread)
495 jthread thread, jmethodID method, jlocation location,
684 initialize(JNIEnv *env, jthread thread, EventIndex triggering_ei)
H A Dutil.c537 jthread thread;
631 filterDebugThreads(jthread *threads, int count)
638 jthread thread = threads[i];
853 jthread thread;
1021 jthread thread = threadControl_currentThread();
1187 jthread *
1190 jthread *threads;
2320 jthread thread, jmethodID method, jlocation location)
H A DinStream.c231 jthread
H A DVirtualMachineImpl.c497 jthread *theThreads;
/openjdk7/jdk/src/share/demo/jvmti/heapViewer/
H A DheapViewer.c203 vmInit(jvmtiEnv *jvmti, JNIEnv *env, jthread thread)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpot.java308 public void setFocus(ThreadProxy thread, JavaThread jthread) {
669 JavaThread jthread = javaThreadForProxy(t);
670 if (jthread != null) {
679 VFrame vf = jthread.getLastJavaVFrameDbg();
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp54 JavaThread* jthread = JavaThread::current(); local
55 if (jthread->has_last_Java_frame()) {
56 vframeStream vfst(jthread);
/openjdk7/jdk/src/share/javavm/export/
H A Djvm.h273 JVM_SetNativeThreadName(JNIEnv *env, jobject jthread, jstring name);
/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.cpp494 Node* jthread = _gvn.transform(new (C) ThreadLocalNode()); local
495 Node* adr = basic_plus_adr(top(), jthread, in_bytes(JavaThread::should_post_on_exceptions_flag_offset()));

Completed in 139 milliseconds

123