src/hotspot/share/prims/jvmtiImpl.cpp
changeset 51334 cc2c79d22508
parent 51329 9c68699bebe5
child 52445 a1eb4f1b94c1
equal deleted inserted replaced
51333:f6641fcf7b7e 51334:cc2c79d22508
   529   : _thread(thread)
   529   : _thread(thread)
   530   , _calling_thread(NULL)
   530   , _calling_thread(NULL)
   531   , _depth(depth)
   531   , _depth(depth)
   532   , _index(index)
   532   , _index(index)
   533   , _type(type)
   533   , _type(type)
       
   534   , _jvf(NULL)
   534   , _set(false)
   535   , _set(false)
   535   , _jvf(NULL)
       
   536   , _result(JVMTI_ERROR_NONE)
   536   , _result(JVMTI_ERROR_NONE)
   537 {
   537 {
   538 }
   538 }
   539 
   539 
   540 // Constructor for object or non-object setter
   540 // Constructor for object or non-object setter
   543   , _calling_thread(NULL)
   543   , _calling_thread(NULL)
   544   , _depth(depth)
   544   , _depth(depth)
   545   , _index(index)
   545   , _index(index)
   546   , _type(type)
   546   , _type(type)
   547   , _value(value)
   547   , _value(value)
       
   548   , _jvf(NULL)
   548   , _set(true)
   549   , _set(true)
   549   , _jvf(NULL)
       
   550   , _result(JVMTI_ERROR_NONE)
   550   , _result(JVMTI_ERROR_NONE)
   551 {
   551 {
   552 }
   552 }
   553 
   553 
   554 // Constructor for object getter
   554 // Constructor for object getter
   556   : _thread(thread)
   556   : _thread(thread)
   557   , _calling_thread(calling_thread)
   557   , _calling_thread(calling_thread)
   558   , _depth(depth)
   558   , _depth(depth)
   559   , _index(index)
   559   , _index(index)
   560   , _type(T_OBJECT)
   560   , _type(T_OBJECT)
       
   561   , _jvf(NULL)
   561   , _set(false)
   562   , _set(false)
   562   , _jvf(NULL)
       
   563   , _result(JVMTI_ERROR_NONE)
   563   , _result(JVMTI_ERROR_NONE)
   564 {
   564 {
   565 }
   565 }
   566 
   566 
   567 vframe *VM_GetOrSetLocal::get_vframe() {
   567 vframe *VM_GetOrSetLocal::get_vframe() {