Esempio n. 1
0
 public jvmtiError SetEventNotificationMode(JvmEventMode mode, JvmEventType eventType)
 {
     return(RawInterface.SetEventNotificationMode(this, mode, eventType, jthread.Null));
 }
Esempio n. 2
0
 public void SetEventNotificationMode(JvmEventMode mode, JvmEventType eventType)
 {
     SetEventNotificationMode(mode, eventType, default(JvmThreadReference));
 }
Esempio n. 3
0
        public void SetEventNotificationMode(JvmEventMode mode, JvmEventType eventType, JvmThreadReference eventThread)
        {
            jthread eventThreadHandle = (jthread)eventThread;

            ThrowOnFailure(_rawInterface.SetEventNotificationMode(_env, mode, eventType, eventThreadHandle));
        }
Esempio n. 4
0
 public jvmtiError SetEventNotificationMode(JvmEventMode mode, JvmEventType eventType)
 {
     return RawInterface.SetEventNotificationMode(this, mode, eventType, jthread.Null);
 }