Lines Matching defs:thread

127   static void post_field_modification(JavaThread *thread, methodOop method, address location,
227 static void at_single_stepping_point(JavaThread *thread, methodOop method, address location);
228 static void expose_single_stepping(JavaThread *thread);
229 static bool hide_single_stepping(JavaThread *thread);
236 static void post_single_step (JavaThread *thread, methodOop method, address location);
237 static void post_raw_breakpoint (JavaThread *thread, methodOop method, address location);
239 static void post_exception_throw (JavaThread *thread, methodOop method, address location, oop exception);
240 static void notice_unwind_due_to_exception (JavaThread *thread, methodOop method, address location, oop exception, bool in_handler_frame);
242 static oop jni_GetField_probe (JavaThread *thread, jobject jobj,
244 static oop jni_GetField_probe_nh (JavaThread *thread, jobject jobj,
246 static void post_field_access_by_jni (JavaThread *thread, oop obj,
248 static void post_field_access (JavaThread *thread, methodOop method,
250 static oop jni_SetField_probe (JavaThread *thread, jobject jobj,
253 static oop jni_SetField_probe_nh (JavaThread *thread, jobject jobj,
256 static void post_field_modification_by_jni(JavaThread *thread, oop obj,
259 static void post_raw_field_modification(JavaThread *thread, methodOop method,
263 static void post_method_entry (JavaThread *thread, methodOop method, frame current_frame);
264 static void post_method_exit (JavaThread *thread, methodOop method, frame current_frame);
266 static void post_class_load (JavaThread *thread, klassOop klass);
268 static void post_class_prepare (JavaThread *thread, klassOop klass);
270 static void post_thread_start (JavaThread *thread);
271 static void post_thread_end (JavaThread *thread);
298 static void post_monitor_contended_enter(JavaThread *thread, ObjectMonitor *obj_mntr);
299 static void post_monitor_contended_entered(JavaThread *thread, ObjectMonitor *obj_mntr);
300 static void post_monitor_wait(JavaThread *thread, oop obj, jlong timeout);
301 static void post_monitor_waited(JavaThread *thread, ObjectMonitor *obj_mntr, jboolean timed_out);
306 static void post_vm_object_alloc(JavaThread *thread, oop object);
320 static void cleanup_thread (JavaThread* thread);
356 // JvmtiEventCollector is a helper class to setup thread for
363 void setup_jvmti_thread_state(); // Set this collector in current thread.
364 void unset_jvmti_thread_state(); // Reset previous collector in current thread.
479 JvmtiHideSingleStepping(JavaThread * thread) {
480 assert(thread != NULL, "sanity check");
483 _thread = thread;