summaryrefslogtreecommitdiff
path: root/openjdkjvmti/ti_extension.cc
diff options
context:
space:
mode:
Diffstat (limited to 'openjdkjvmti/ti_extension.cc')
-rw-r--r--openjdkjvmti/ti_extension.cc15
1 files changed, 0 insertions, 15 deletions
diff --git a/openjdkjvmti/ti_extension.cc b/openjdkjvmti/ti_extension.cc
index f12cb0a380..5d398844b2 100644
--- a/openjdkjvmti/ti_extension.cc
+++ b/openjdkjvmti/ti_extension.cc
@@ -38,7 +38,6 @@
#include "ti_allocator.h"
#include "ti_class.h"
#include "ti_ddms.h"
-#include "ti_dump.h"
#include "ti_heap.h"
#include "ti_logging.h"
#include "ti_monitor.h"
@@ -313,20 +312,6 @@ jvmtiError ExtensionUtil::GetExtensionFunctions(jvmtiEnv* env,
return error;
}
- // DumpInternalState
- error = add_extension(
- reinterpret_cast<jvmtiExtensionFunction>(DumpUtil::DumpInternalState),
- "com.android.art.misc.get_plugin_internal_state",
- "Gets internal state about the plugin and serializes it to the given msg. "
- "There is no particular format to this message beyond being human readable.",
- {
- { "msg", JVMTI_KIND_ALLOC_BUF, JVMTI_TYPE_CCHAR, false },
- },
- { ERR(NULL_POINTER) });
- if (error != ERR(NONE)) {
- return error;
- }
-
// Copy into output buffer.
*extension_count_ptr = ext_vector.size();