Home
last modified time | relevance | path

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

/external/autotest/server/site_tests/firmware_FWupdate/
Dfirmware_FWupdate.py42 dict_args = utils.args_to_dict(cmdline_args)
44 if not set(('new_ec', 'new_bios')).issubset(set(dict_args)):
46 self.new_ec = dict_args['new_ec']
47 self.new_bios = dict_args['new_bios']
51 if 'new_pd' in dict_args:
52 self.new_pd = dict_args['new_pd']
58 if 'mode' in dict_args:
59 self.mode = dict_args['mode']
/external/autotest/server/site_tests/firmware_ChipFwUpdate/
Dfirmware_ChipFwUpdate.py71 dict_args = utils.args_to_dict(cmdline_args)
75 self.new_bios_path = dict_args['bios'] if 'bios' in dict_args else None
94 if chip_name not in dict_args:
96 chip_file = dict_args[chip_name]
/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_ConsecutiveBoot/
Dfirmware_ConsecutiveBoot.py32 dict_args = utils.args_to_dict(cmdline_args)
33 self.faft_iterations = int(dict_args.get('faft_iterations', 1))
34 self.faft_waitup_time = int(dict_args.get('faft_waitup_time', 0))
35 self.faft_localrun = int(dict_args.get('faft_localrun', 0))
/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/client/site_tests/power_CheckAfterSuspend/
Dcontrol.per_build23 dict_args = utils.args_to_dict(args)
24 iterations = int(dict_args.get('iterations', 1))
Dcontrol.TPMCheckStress23 dict_args = utils.args_to_dict(args)
24 iterations = int(dict_args.get('iterations', 100))
/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.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_EmmcWriteLoad/
Dfirmware_EmmcWriteLoad.py38 dict_args = utils.args_to_dict(cmdline_args)
39 self.minutes_to_run = int(dict_args.get('minutes_to_run', 5))
/external/autotest/server/site_tests/firmware_UpdateFirmwareVersion/
Dfirmware_UpdateFirmwareVersion.py40 dict_args = utils.args_to_dict(cmdline_args)
41 shellball_path = dict_args.get('shellball', None)
/external/autotest/server/site_tests/firmware_UpdateKernelSubkeyVersion/
Dfirmware_UpdateKernelSubkeyVersion.py51 dict_args = utils.args_to_dict(cmdline_args)
52 shellball_path = dict_args.get('shellball', None)
/external/autotest/server/site_tests/firmware_UpdateFirmwareDataKeyVersion/
Dfirmware_UpdateFirmwareDataKeyVersion.py53 dict_args = utils.args_to_dict(cmdline_args)
54 shellball_path = dict_args.get('shellball', None)
/external/autotest/server/site_tests/platform_Flashrom/
Dplatform_Flashrom.py27 dict_args = utils.args_to_dict(cmdline_args)
/external/autotest/server/site_tests/firmware_TPMNotCorruptedDevMode/
Dfirmware_TPMNotCorruptedDevMode.py44 dict_args = utils.args_to_dict(cmdline_args)
/external/autotest/server/site_tests/firmware_Mosys/
Dfirmware_Mosys.py31 dict_args = utils.args_to_dict(cmdline_args)
/external/python/cpython3/Modules/
D_pickle.c4464 PyObject *reduce_value, *dict_args; in _pickle_PicklerMemoProxy___reduce___impl() local
4474 dict_args = PyTuple_New(1); in _pickle_PicklerMemoProxy___reduce___impl()
4475 if (dict_args == NULL) { in _pickle_PicklerMemoProxy___reduce___impl()
4480 PyTuple_SET_ITEM(dict_args, 0, contents); in _pickle_PicklerMemoProxy___reduce___impl()
4483 PyTuple_SET_ITEM(reduce_value, 1, dict_args); in _pickle_PicklerMemoProxy___reduce___impl()