// JvmtiExtensions // // Maintains the list of extension functions and events in this JVMTI // implementation. The list of functions and events can be obtained by // the profiler using the JVMTI GetExtensionFunctions and // GetExtensionEvents functions.
class JvmtiExtensions : public AllStatic { private: static GrowableArray<jvmtiExtensionFunctionInfo*>* _ext_functions; static GrowableArray<jvmtiExtensionEventInfo*>* _ext_events;
public: // register extensions function staticvoid register_extensions();
// returns the list of extension functions static jvmtiError get_functions(JvmtiEnv* env, jint* extension_count_ptr,
jvmtiExtensionFunctionInfo** extensions);
// returns the list of extension events static jvmtiError get_events(JvmtiEnv* env, jint* extension_count_ptr,
jvmtiExtensionEventInfo** extensions);
// sets the callback function for an extension event and enables the event static jvmtiError set_event_callback(JvmtiEnv* env, jint extension_event_index,
jvmtiExtensionEvent callback);
};
#endif// SHARE_PRIMS_JVMTIEXTENSIONS_HPP
Messung V0.5 in Prozent
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.16Bemerkung:
(vorverarbeitet am 2026-09-10)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.