Lines Matching +full:resolve +full:- +full:from
4 # Use of this source code is governed by a BSD-style license that can be
18 from multiprocessing.pool import ThreadPool
22 from devil.android import device_denylist
23 from devil.android import device_errors
24 from devil.android import device_utils
25 from devil.utils import run_tests_helper
26 from pylib import constants
27 from pylib.symbols import stack_symbolizer
74 """Retrieve the tombstone data from the device
88 """Deletes a tombstone from the device.
105 (str(tombstone['device_now'] - tombstone['time']) +
117 """Resolve a list of tombstones.
124 logging.warning('No tombstones to resolve.')
148 resolve_all_tombstone: Whether to resolve every tombstone.
161 # Only resolve the most recent unless --all-tombstones given.
205 """Resolve tombstones in the device.
209 resolve_all_tombstone: Whether to resolve every tombstone.
233 parser.add_argument('--device',
236 parser.add_argument('--denylist-file', help='Device denylist JSON file.')
237 parser.add_argument('-a', '--all-tombstones', action='store_true',
238 help='Resolve symbols for all tombstones, rather than '
240 parser.add_argument('-s', '--stack', action='store_true',
242 parser.add_argument('-w', '--wipe-tombstones', action='store_true',
243 help='Erase all tombstones from device after processing')
244 parser.add_argument('-j', '--jobs', type=int,
248 parser.add_argument('--output-directory',
250 parser.add_argument('--adb-path', type=os.path.abspath,