From b163cb39457a8e28524abd8cd8e5e3a244ead0d0 Mon Sep 17 00:00:00 2001 From: Fabien Sanglard Date: Wed, 24 May 2023 22:20:51 +0000 Subject: 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 --- dexdump/dexdump.h | 1 + 1 file changed, 1 insertion(+) (limited to 'dexdump/dexdump.h') 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. */ -- cgit v1.2.3-59-g8ed1b