Up Top

Serviceability 機能 : JVMTI の処理 : JVMTI 関数の処理 : 拡張機能機構 (Extension Mechanism) : GetExtensionFunctions(), GetExtensionEvents(), SetExtensionEventCallback() の処理


概要(Summary)

(See: JVMTI 仕様)

処理の流れ (概要)(Execution Flows : Summary)

初期化処理

(See: here for details)
-> JvmtiEnvBase::globally_initialize()
   -> JvmtiExtensions::register_extensions()

GetExtensionFunctions() の処理

JvmtiEnv::GetExtensionFunctions()
-> JvmtiExtensions::get_functions()

GetExtensionEvents() の処理

JvmtiEnv::GetExtensionEvents()
-> JvmtiExtensions::get_events()

SetExtensionEventCallback() の処理

JvmtiEnv::SetExtensionEventCallback()
-> JvmtiExtensions::set_event_callback()
   -> JvmtiEventController::set_extension_event_callback()
      -> JvmtiEventControllerPrivate::set_extension_event_callback()

処理の流れ (詳細)(Execution Flows : Details)

JvmtiExtensions::register_extensions()

See: here for details

JvmtiEnv::GetExtensionFunctions()

See: here for details

JvmtiExtensions::get_functions()

(#Under Construction) See: here for details

JvmtiEnv::GetExtensionEvents()

See: here for details

JvmtiExtensions::get_events()

(#Under Construction) See: here for details

JvmtiEnv::SetExtensionEventCallback()

See: here for details

JvmtiExtensions::set_event_callback()

See: here for details

JvmtiEventController::set_extension_event_callback()

See: here for details

JvmtiEventControllerPrivate::set_extension_event_callback()

(#Under Construction) See: here for details


This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.