Lines Matching refs:JvmtiEnvBase

51 // JvmtiEnvBase
54 JvmtiEnvBase* JvmtiEnvBase::_head_environment = NULL;
56 bool JvmtiEnvBase::_globally_initialized = false;
57 volatile bool JvmtiEnvBase::_needs_clean_up = false;
59 jvmtiPhase JvmtiEnvBase::_phase = JVMTI_PHASE_PRIMORDIAL;
61 volatile int JvmtiEnvBase::_dying_thread_env_iteration_count = 0;
71 JvmtiEnvBase::globally_initialize() {
89 JvmtiEnvBase::initialize() {
99 JvmtiEnvBase *previous_env = NULL;
100 for (JvmtiEnvBase* env = it.first(); env != NULL; env = it.next(env)) {
117 JvmtiEnvBase::is_valid() {
120 // This object might not be a JvmtiEnvBase so we can't assume
146 JvmtiEnvBase::use_version_1_0_semantics() {
155 JvmtiEnvBase::use_version_1_1_semantics() {
163 JvmtiEnvBase::use_version_1_2_semantics() {
171 JvmtiEnvBase::JvmtiEnvBase(jint version) : _env_event_enable() {
207 JvmtiEnvBase::dispose() {
219 JvmtiEnvBase::env_dispose() {
248 JvmtiEnvBase::~JvmtiEnvBase() {
266 JvmtiEnvBase::periodic_clean_up() {
269 // JvmtiEnvBase reference is saved in JvmtiEnvThreadState. So
276 JvmtiEnvBase* previous_env = NULL;
277 JvmtiEnvBase* env = it.first();
284 JvmtiEnvBase* defunct_env = env;
299 JvmtiEnvBase::check_for_periodic_clean_up() {
325 JvmtiEnvBase::periodic_clean_up();
332 JvmtiEnvBase::record_first_time_class_file_load_hook_enabled() {
352 JvmtiEnvBase::record_class_file_load_hook_enabled() {
365 JvmtiEnvBase::set_native_method_prefixes(jint prefix_count, char** prefixes) {
423 JvmtiEnvBase::get_all_native_method_prefixes(int* count_ptr) {
433 for (JvmtiEnvBase* env = it.first(); env != NULL; env = it.next(env)) {
456 JvmtiEnvBase::set_event_callbacks(const jvmtiEventCallbacks* callbacks,
484 JvmtiEnvBase::is_thread_fully_suspended(JavaThread* thr, bool wait_for_suspend, uint32_t *bits) {
512 JvmtiEnvBase::jvmtiMalloc(jlong size) {
525 JvmtiEnvBase::new_jobjectArray(int length, Handle *handles) {
540 JvmtiEnvBase::new_jthreadArray(int length, Handle *handles) {
545 JvmtiEnvBase::new_jthreadGroupArray(int length, Handle *handles) {
551 JvmtiEnvBase::get_JavaThread(jthread jni_thread) {
564 JvmtiEnvBase::vframeFor(JavaThread* java_thread, jint depth) {
585 JvmtiEnvBase::get_jni_class_non_null(klassOop k) {
595 JvmtiEnvBase::get_field_descriptor(klassOop k, jfieldID field, fieldDescriptor* fd) {
622 JvmtiEnvBase::count_locked_objects(JavaThread *java_thread, Handle hobj) {
653 JvmtiEnvBase::get_current_contended_monitor(JavaThread *calling_thread, JavaThread *java_thread, jobject *monitor_ptr) {
690 JvmtiEnvBase::get_owned_monitors(JavaThread *calling_thread, JavaThread* java_thread,
728 JvmtiEnvBase::get_locked_objects_in_frame(JavaThread* calling_thread, JavaThread* java_thread,
812 JvmtiEnvBase::get_stack_trace(JavaThread *java_thread,
888 JvmtiEnvBase::get_frame_count(JvmtiThreadState *state, jint *count_ptr) {
896 JvmtiEnvBase::get_frame_location(JavaThread *java_thread, jint depth,
938 JvmtiEnvBase::get_object_monitor_usage(JavaThread* calling_thread, jobject object, jvmtiMonitorUsage* info_ptr) {
1318 JvmtiEnvBase::check_top_frame(JavaThread* current_thread, JavaThread* java_thread,
1380 JvmtiEnvBase::force_early_return(JavaThread* java_thread, jvalue value, TosState tos) {