当前位置: 首页>>代码示例>>C++>>正文


C++ JvmtiGetLoadedClassesClosure::set_count方法代码示例

本文整理汇总了C++中JvmtiGetLoadedClassesClosure::set_count方法的典型用法代码示例。如果您正苦于以下问题:C++ JvmtiGetLoadedClassesClosure::set_count方法的具体用法?C++ JvmtiGetLoadedClassesClosure::set_count怎么用?C++ JvmtiGetLoadedClassesClosure::set_count使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在JvmtiGetLoadedClassesClosure的用法示例。


在下文中一共展示了JvmtiGetLoadedClassesClosure::set_count方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: increment

 // Finally, the static methods that are the callbacks
 static void increment(klassOop k) {
   JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this();
   if (that->get_initiatingLoader() == NULL) {
     for (klassOop l = k; l != NULL; l = Klass::cast(l)->array_klass_or_null()) {
       that->set_count(that->get_count() + 1);
     }
   } else if (k != NULL) {
     // if initiating loader not null, just include the instance with 1 dimension
     that->set_count(that->get_count() + 1);
   }
 }
开发者ID:guanxiaohua,项目名称:TransGC,代码行数:12,代码来源:jvmtiGetLoadedClasses.cpp

示例2: increment_for_basic_type_arrays

 // increment the count for the given basic type array class (and any
 // multi-dimensional arrays). For example, for [B we check for
 // [[B, [[[B, .. and the count is incremented for each one that exists.
 static void increment_for_basic_type_arrays(Klass* k) {
   JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this();
   assert(that != NULL, "no JvmtiGetLoadedClassesClosure");
   for (Klass* l = k; l != NULL; l = l->array_klass_or_null()) {
     that->set_count(that->get_count() + 1);
   }
 }
开发者ID:campolake,项目名称:openjdk9,代码行数:10,代码来源:jvmtiGetLoadedClasses.cpp

示例3: prim_array_increment_with_loader

 static void prim_array_increment_with_loader(Klass* array, ClassLoaderData* loader_data) {
   JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this();
   oop class_loader = loader_data->class_loader();
   if (class_loader == JNIHandles::resolve(that->get_initiatingLoader())) {
     that->set_count(that->get_count() + 1);
   }
 }
开发者ID:campolake,项目名称:openjdk9,代码行数:7,代码来源:jvmtiGetLoadedClasses.cpp

示例4: increment_with_loader

 static void increment_with_loader(klassOop k, oop loader) {
   JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this();
   if (loader == JNIHandles::resolve(that->get_initiatingLoader())) {
     for (klassOop l = k; l != NULL; l = Klass::cast(l)->array_klass_or_null()) {
       that->set_count(that->get_count() + 1);
     }
   }
 }
开发者ID:guanxiaohua,项目名称:TransGC,代码行数:8,代码来源:jvmtiGetLoadedClasses.cpp

示例5: increment_with_loader

 static void increment_with_loader(Klass* k, ClassLoaderData* loader_data) {
   JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this();
   oop class_loader = loader_data->class_loader();
   if (class_loader == JNIHandles::resolve(that->get_initiatingLoader())) {
     for (Klass* l = k; l != NULL; l = l->array_klass_or_null()) {
       that->set_count(that->get_count() + 1);
     }
   }
 }
开发者ID:campolake,项目名称:openjdk9,代码行数:9,代码来源:jvmtiGetLoadedClasses.cpp

示例6: prim_array_increment_with_loader

 static void prim_array_increment_with_loader(klassOop array, oop loader) {
   JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this();
   if (loader == JNIHandles::resolve(that->get_initiatingLoader())) {
     that->set_count(that->get_count() + 1);
   }
 }
开发者ID:guanxiaohua,项目名称:TransGC,代码行数:6,代码来源:jvmtiGetLoadedClasses.cpp


注:本文中的JvmtiGetLoadedClassesClosure::set_count方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。