Home
last modified time | relevance | path

Searched refs:dict_args (Results 1 – 21 of 21) sorted by relevance

/external/autotest/server/site_tests/firmware_ConsecutiveBoot/
Dfirmware_ConsecutiveBoot.py31 dict_args = utils.args_to_dict(cmdline_args)
32 self.faft_iterations = int(dict_args.get('faft_iterations', 1))
33 self.faft_waitup_time = int(dict_args.get('faft_waitup_time', 0))
34 self.faft_localrun = int(dict_args.get('faft_localrun', 0))
/external/autotest/client/site_tests/network_PortalStress/
Dcontrol33 dict_args = dict([x.split('=') for x in args])
35 dict_args = {}
39 force_portal=False, tag='online', test_iterations=100, **dict_args)
44 force_portal=True, tag='portal', test_iterations=20, **dict_args)
/external/autotest/server/site_tests/firmware_ChipFwUpdate/
Dfirmware_ChipFwUpdate.py68 dict_args = utils.args_to_dict(cmdline_args)
72 self.new_bios_path = dict_args['bios'] if 'bios' in dict_args else None
91 if chip_name not in dict_args:
93 chip_file = dict_args[chip_name]
/external/autotest/server/site_tests/firmware_ConsecutiveBootPowerButton/
Dfirmware_ConsecutiveBootPowerButton.py25 dict_args = utils.args_to_dict(cmdline_args)
26 self.faft_iterations = int(dict_args.get('faft_iterations', 1))
/external/autotest/server/site_tests/firmware_DevModeStress/
Dfirmware_DevModeStress.py20 dict_args = utils.args_to_dict(cmdline_args)
21 self.faft_iterations = int(dict_args.get('faft_iterations', 1))
/external/autotest/server/site_tests/firmware_CgptStress/
Dfirmware_CgptStress.py20 dict_args = utils.args_to_dict(cmdline_args)
21 self.faft_iterations = int(dict_args.get('faft_iterations', 1))
/external/autotest/server/site_tests/firmware_ConsecutiveLidSwitch/
Dfirmware_ConsecutiveLidSwitch.py30 dict_args = utils.args_to_dict(cmdline_args)
31 self.faft_iterations = int(dict_args.get('faft_iterations', 1))
/external/autotest/server/site_tests/firmware_CompareChipFwToShellBall/
Dfirmware_CompareChipFwToShellBall.py40 dict_args = utils.args_to_dict(cmdline_args)
41 self.new_bios_path = dict_args['bios'] if 'bios' in dict_args else None
/external/autotest/server/site_tests/platform_S3Cycle/
Dplatform_S3Cycle.py25 dict_args = utils.args_to_dict(cmdline_args)
26 self.faft_iterations = int(dict_args.get('faft_iterations', 1))
/external/autotest/server/site_tests/platform_BootPerfServer/
Dcontrol.perfalerts28 dict_args = utils.args_to_dict(args)
29 iterations = int(dict_args.get('iterations', 100))
/external/autotest/server/site_tests/platform_S0ixCycle/
Dplatform_S0ixCycle.py26 dict_args = utils.args_to_dict(cmdline_args)
27 self.faft_iterations = int(dict_args.get('faft_iterations', 1))
/external/autotest/server/site_tests/firmware_EmmcWriteLoad/
Dfirmware_EmmcWriteLoad.py39 dict_args = utils.args_to_dict(cmdline_args)
40 self.minutes_to_run = int(dict_args.get('minutes_to_run', 5))
/external/autotest/server/site_tests/firmware_UpdateFirmwareVersion/
Dfirmware_UpdateFirmwareVersion.py43 dict_args = utils.args_to_dict(cmdline_args)
44 shellball_path = dict_args.get('shellball', None)
/external/autotest/server/site_tests/firmware_UpdateKernelSubkeyVersion/
Dfirmware_UpdateKernelSubkeyVersion.py55 dict_args = utils.args_to_dict(cmdline_args)
56 shellball_path = dict_args.get('shellball', None)
/external/autotest/server/site_tests/firmware_UpdateFirmwareDataKeyVersion/
Dfirmware_UpdateFirmwareDataKeyVersion.py57 dict_args = utils.args_to_dict(cmdline_args)
58 shellball_path = dict_args.get('shellball', None)
/external/autotest/server/site_tests/firmware_FWupdate/
Dfirmware_FWupdate.py47 dict_args = utils.args_to_dict(cmdline_args)
49 if dict_args.get('restore', '').lower() == 'false':
59 arg_value = dict_args.get(arg_name)
/external/autotest/server/site_tests/platform_Flashrom/
Dplatform_Flashrom.py27 dict_args = utils.args_to_dict(cmdline_args)
/external/autotest/server/site_tests/firmware_CsmeFwUpdate/
Dfirmware_CsmeFwUpdate.py33 dict_args = utils.args_to_dict(cmdline_args)
43 arg_value = dict_args.get(arg_name)
/external/autotest/server/site_tests/firmware_TPMNotCorruptedDevMode/
Dfirmware_TPMNotCorruptedDevMode.py57 dict_args = utils.args_to_dict(cmdline_args)
/external/autotest/server/site_tests/firmware_Mosys/
Dfirmware_Mosys.py28 dict_args = utils.args_to_dict(cmdline_args)
/external/python/cpython3/Modules/
D_pickle.c4860 PyObject *reduce_value, *dict_args; in _pickle_PicklerMemoProxy___reduce___impl() local
4870 dict_args = PyTuple_New(1); in _pickle_PicklerMemoProxy___reduce___impl()
4871 if (dict_args == NULL) { in _pickle_PicklerMemoProxy___reduce___impl()
4876 PyTuple_SET_ITEM(dict_args, 0, contents); in _pickle_PicklerMemoProxy___reduce___impl()
4879 PyTuple_SET_ITEM(reduce_value, 1, dict_args); in _pickle_PicklerMemoProxy___reduce___impl()