Lines Matching defs:thread

38     jthread thread;
42 thread = inStream_readThreadRef(env, in);
47 if (threadControl_isDebugThread(thread)) {
60 (gdata->jvmti, thread, &info);
80 jthread thread;
82 thread = inStream_readThreadRef(getEnv(), in);
87 if (threadControl_isDebugThread(thread)) {
91 error = threadControl_suspendThread(thread, JNI_FALSE);
102 jthread thread;
104 thread = inStream_readThreadRef(getEnv(), in);
109 if (threadControl_isDebugThread(thread)) {
114 /* true means it is okay to unblock the commandLoop thread */
115 error = threadControl_resumeThread(thread, JNI_TRUE);
128 jthread thread;
130 thread = inStream_readThreadRef(getEnv(), in);
135 if (threadControl_isDebugThread(thread)) {
140 error = threadControl_applicationThreadStatus(thread, &threadStatus,
155 jthread thread;
159 thread = inStream_readThreadRef(env, in);
164 if (threadControl_isDebugThread(thread)) {
177 (gdata->jvmti, thread, &info);
194 validateSuspendedThread(PacketOutputStream *out, jthread thread)
199 error = threadControl_suspendCount(thread, &count);
220 jthread thread;
226 thread = inStream_readThreadRef(env, in);
239 if (threadControl_isDebugThread(thread)) {
244 if (!validateSuspendedThread(out, thread)) {
249 (gdata->jvmti, thread, &count);
286 (gdata->jvmti, thread, fnum, &method, &location);
295 frame = createFrameID(thread, fnum);
319 jthread thread;
321 thread = inStream_readThreadRef(getEnv(), in);
326 if (threadControl_isDebugThread(thread)) {
331 if (!validateSuspendedThread(out, thread)) {
336 (gdata->jvmti, thread, &count);
350 jthread thread;
354 thread = inStream_readThreadRef(env, in);
359 if (threadControl_isDebugThread(thread)) {
364 if (!validateSuspendedThread(out, thread)) {
375 (gdata->jvmti, thread, &count, &monitors);
399 jthread thread;
403 thread = inStream_readThreadRef(env, in);
408 if (thread == NULL || threadControl_isDebugThread(thread)) {
413 if (!validateSuspendedThread(out, thread)) {
423 (gdata->jvmti, thread, &monitor);
441 jthread thread;
446 thread = inStream_readThreadRef(env, in);
455 if (threadControl_isDebugThread(thread)) {
460 error = threadControl_stop(thread, throwable);
471 jthread thread;
473 thread = inStream_readThreadRef(getEnv(), in);
478 if (threadControl_isDebugThread(thread)) {
483 error = threadControl_interrupt(thread);
495 jthread thread;
497 thread = inStream_readThreadRef(getEnv(), in);
502 if (threadControl_isDebugThread(thread)) {
507 error = threadControl_suspendCount(thread, &count);
521 jthread thread;
523 thread = inStream_readThreadRef(getEnv(), in);
528 if (thread == NULL || threadControl_isDebugThread(thread)) {
533 if (!validateSuspendedThread(out, thread)) {
546 (gdata->jvmti, thread, &count, &monitors);
573 jthread thread;
579 thread = inStream_readThreadRef(env, in);
584 if (threadControl_isDebugThread(thread)) {
597 (gdata->jvmti, thread, value.l);
602 (gdata->jvmti, thread);
607 (gdata->jvmti, thread, value.b);
613 (gdata->jvmti, thread, value.c);
619 (gdata->jvmti, thread, value.f);
625 (gdata->jvmti, thread, value.d);
631 (gdata->jvmti, thread, value.i);
637 (gdata->jvmti, thread, value.j);
643 (gdata->jvmti, thread, value.s);
649 (gdata->jvmti, thread, value.z);