Lines Matching +full:- +full:- +full:no +full:- +full:verbose
4 # SPDX-License-Identifier: Apache-2.0
16 field of the `ElfX_Sym` structure is found to be non-zero, which is
74 self.log.error("no symbol table found in file")
115 msg = f"{symbol.name} -> {slid_as_str}"
122 self.log.error(f"unexpected non-zero st_value for symbol {symbol.name}")
136 # pylint: disable=duplicate-code
144 parser.add_argument("-f", "--elf-file", required=True,
146 parser.add_argument("-o", "--output-file",
149 parser.add_argument("-sl", "--slid-listing",
151 parser.add_argument("-v", "--verbose", action="count",
152 help=("enable verbose output, can be used multiple times "
154 parser.add_argument("--always-succeed", action="store_true",
159 def _init_log(verbose): argument
167 if verbose and verbose > 1:
169 elif verbose and verbose > 0:
179 log = _init_log(args.verbose)