Lines Matching refs:help
111 help=self.help,
114 subparsers = parser.add_subparsers(help='sub-command to run', required=True)
116 dump_parser = subparsers.add_parser('dump', help='Dump all binary descriptors in the image')
117 dump_parser.add_argument('file', type=str, help='Executable file')
118 dump_parser.add_argument('--file-type', type=str, choices=self.EXTENSIONS, help='File type')
120 help='Target CPU is big endian')
123 search_parser = subparsers.add_parser('search', help='Search for a specific descriptor')
124 search_parser.add_argument('descriptor', type=str, help='Descriptor name')
125 search_parser.add_argument('file', type=str, help='Executable file')
127 help='File type')
129 help='Target CPU is big endian')
133 help='Search for a custom descriptor')
135 help='Descriptor type')
136 custom_search_parser.add_argument('id', type=str, help='Descriptor ID in hex')
137 custom_search_parser.add_argument('file', type=str, help='Executable file')
139 help='File type')
141 help='Target CPU is big endian')
144 list_parser = subparsers.add_parser('list', help='List all known descriptors')
148 help='Get the offset of the descriptors')
149 get_offset_parser.add_argument('file', type=str, help='Executable file')
151 help='File type')
153 help='Target CPU is big endian')