jdk/src/java.base/share/native/include/jvmti.h
changeset 39738 15fea8b870eb
parent 38340 ef34263f90ef
equal deleted inserted replaced
39737:4da8463b3d33 39738:15fea8b870eb
  1215   /*   39 : Clear Breakpoint */
  1215   /*   39 : Clear Breakpoint */
  1216   jvmtiError (JNICALL *ClearBreakpoint) (jvmtiEnv* env,
  1216   jvmtiError (JNICALL *ClearBreakpoint) (jvmtiEnv* env,
  1217     jmethodID method,
  1217     jmethodID method,
  1218     jlocation location);
  1218     jlocation location);
  1219 
  1219 
  1220   /*   40 :  RESERVED */
  1220   /*   40 : Get Named Module */
  1221   void *reserved40;
  1221   jvmtiError (JNICALL *GetNamedModule) (jvmtiEnv* env,
       
  1222     jobject class_loader,
       
  1223     const char* package_name,
       
  1224     jobject* module_ptr);
  1222 
  1225 
  1223   /*   41 : Set Field Access Watch */
  1226   /*   41 : Set Field Access Watch */
  1224   jvmtiError (JNICALL *SetFieldAccessWatch) (jvmtiEnv* env,
  1227   jvmtiError (JNICALL *SetFieldAccessWatch) (jvmtiEnv* env,
  1225     jclass klass,
  1228     jclass klass,
  1226     jfieldID field);
  1229     jfieldID field);
  2144   jvmtiError GetAllModules(jint* module_count_ptr,
  2147   jvmtiError GetAllModules(jint* module_count_ptr,
  2145             jobject** modules_ptr) {
  2148             jobject** modules_ptr) {
  2146     return functions->GetAllModules(this, module_count_ptr, modules_ptr);
  2149     return functions->GetAllModules(this, module_count_ptr, modules_ptr);
  2147   }
  2150   }
  2148 
  2151 
       
  2152   jvmtiError GetNamedModule(jobject class_loader,
       
  2153             const char* package_name,
       
  2154             jobject* module_ptr) {
       
  2155     return functions->GetNamedModule(this, class_loader, package_name, module_ptr);
       
  2156   }
       
  2157 
  2149   jvmtiError GetLoadedClasses(jint* class_count_ptr,
  2158   jvmtiError GetLoadedClasses(jint* class_count_ptr,
  2150             jclass** classes_ptr) {
  2159             jclass** classes_ptr) {
  2151     return functions->GetLoadedClasses(this, class_count_ptr, classes_ptr);
  2160     return functions->GetLoadedClasses(this, class_count_ptr, classes_ptr);
  2152   }
  2161   }
  2153 
  2162