summaryrefslogtreecommitdiff
path: root/dexdump/dexdump.h
diff options
context:
space:
mode:
author Fabien Sanglard <sanglardf@google.com> 2023-05-24 22:20:51 +0000
committer Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2023-05-26 09:16:29 +0000
commitb163cb39457a8e28524abd8cd8e5e3a244ead0d0 (patch)
treef8f94e2cf1eaa6fdb1602d66dab7eb2cdc1f7f1c /dexdump/dexdump.h
parentd0aab454bf54cc71ef13d5f52fb9a7bf8d404d76 (diff)
dexdump: Add dump string_ids capability (-s)
It can useful to inspect dex markers. These are contained in the string_ids section but not referenced by anything. This CL adds options -s to dump all strings in a dex file without accounting if they are referenced or not. Test: dexdump_test.cc Bug: 283737440 Change-Id: If1b384638f3164728e2b90d6796e0397e536ad86
Diffstat (limited to 'dexdump/dexdump.h')
-rw-r--r--dexdump/dexdump.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/dexdump/dexdump.h b/dexdump/dexdump.h
index 7226ca0fc9..ec101d5b6d 100644
--- a/dexdump/dexdump.h
+++ b/dexdump/dexdump.h
@@ -51,6 +51,7 @@ struct Options {
bool verbose;
OutputFormat outputFormat;
const char* outputFileName;
+ bool showAllStrings;
};
/* Prototypes. */