Home
last modified time | relevance | path

Searched refs:denylist_file (Results 1 – 12 of 12) sorted by relevance

/external/chromium-trace/catapult/devil/devil/android/
Ddevice_denylist_test.py15 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/
Dscript_common.py72 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)
Dflash_device.py37 if args.denylist_file:
38 denylist = device_denylist.Denylist(args.denylist_file).Read()
58 adb_devices = script_common.GetDevices(args.devices, args.denylist_file)
Ddevice_monitor.py218 denylist = (device_denylist.Denylist(args.denylist_file)
219 if args.denylist_file else None)
222 os.getpid(), args.adb_path, args.denylist_file)
Dprovision_devices.py74 denylist_file, argument
90 denylist = (device_denylist.Denylist(denylist_file)
91 if denylist_file else None)
677 args.denylist_file,
Dscreenshot.py43 devices = script_common.GetDevices(args.devices, args.denylist_file)
Dadb_run_shell_cmd.py35 devices = script_common.GetDevices(args.devices, args.denylist_file)
Ddevice_status.py258 denylist = (device_denylist.Denylist(args.denylist_file)
259 if args.denylist_file else None)
Ddevice_recovery.py250 denylist = (device_denylist.Denylist(args.denylist_file)
251 if args.denylist_file else None)
Dvideo_recorder.py166 args.devices, args.denylist_file),
Dwebview_app.py196 devices = script_common.GetDevices(args.devices, args.denylist_file)
Dsystem_app.py354 devices = script_common.GetDevices(args.devices, args.denylist_file)