Searched refs:denylist_file (Results 1 – 12 of 12) sorted by relevance
/external/chromium-trace/catapult/devil/devil/android/ |
D | device_denylist_test.py | 15 with tempfile.NamedTemporaryFile() as denylist_file: 19 test_denylist = device_denylist.Denylist(denylist_file.name) 24 with tempfile.NamedTemporaryFile(delete=False) as denylist_file: 28 test_denylist = device_denylist.Denylist(denylist_file.name) 32 if os.path.exists(denylist_file.name): 33 os.remove(denylist_file.name)
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
D | script_common.py | 72 def GetDevices(requested_devices, denylist_file): argument 74 if not isinstance(denylist_file, device_denylist.Denylist): 75 denylist_file = (device_denylist.Denylist(denylist_file) 76 if denylist_file else None) 78 devices = device_utils.DeviceUtils.HealthyDevices(denylist_file)
|
D | flash_device.py | 37 if args.denylist_file: 38 denylist = device_denylist.Denylist(args.denylist_file).Read() 58 adb_devices = script_common.GetDevices(args.devices, args.denylist_file)
|
D | device_monitor.py | 218 denylist = (device_denylist.Denylist(args.denylist_file) 219 if args.denylist_file else None) 222 os.getpid(), args.adb_path, args.denylist_file)
|
D | provision_devices.py | 74 denylist_file, argument 90 denylist = (device_denylist.Denylist(denylist_file) 91 if denylist_file else None) 677 args.denylist_file,
|
D | screenshot.py | 43 devices = script_common.GetDevices(args.devices, args.denylist_file)
|
D | adb_run_shell_cmd.py | 35 devices = script_common.GetDevices(args.devices, args.denylist_file)
|
D | device_status.py | 258 denylist = (device_denylist.Denylist(args.denylist_file) 259 if args.denylist_file else None)
|
D | device_recovery.py | 250 denylist = (device_denylist.Denylist(args.denylist_file) 251 if args.denylist_file else None)
|
D | video_recorder.py | 166 args.devices, args.denylist_file),
|
D | webview_app.py | 196 devices = script_common.GetDevices(args.devices, args.denylist_file)
|
D | system_app.py | 354 devices = script_common.GetDevices(args.devices, args.denylist_file)
|