Home
last modified time | relevance | path

Searched refs:Dict (Results 1 – 25 of 53) sorted by relevance

123

/openbmc/linux/tools/testing/kunit/
H A Drun_checks.py17 from typing import Dict, List, Sequence
22 commands: Dict[str, Sequence[str]] = {
31 necessary_deps : Dict[str, str] = {
40 future_to_name: Dict[futures.Future[None], str] = {}
H A Dkunit_json.py11 from typing import Any, Dict
22 JsonObj = Dict[str, Any]
24 _status_map: Dict[TestStatus, str] = {
/openbmc/qemu/scripts/qapi/
H A Dintrospect.py16 Dict,
62 _NonScalar = Union[Dict[str, _Stub], List[_Stub]]
70 SchemaInfo = Dict[str, object]
71 SchemaInfoEnumMember = Dict[str, object]
72 SchemaInfoObject = Dict[str, object]
73 SchemaInfoObjectVariant = Dict[str, object]
74 SchemaInfoObjectMember = Dict[str, object]
75 SchemaInfoCommand = Dict[str, object]
181 self._name_map: Dict[str, str] = {}
251 def _gen_tree(self, name: str, mtype: str, obj: Dict[str, object],
H A Dcommon.py17 Dict,
196 def gen_ifcond(ifcond: Optional[Union[str, Dict[str, Any]]],
200 def do_gen(ifcond: Union[str, Dict[str, Any]],
223 def cgen_ifcond(ifcond: Optional[Union[str, Dict[str, Any]]]) -> str:
227 def docgen_ifcond(ifcond: Optional[Union[str, Dict[str, Any]]]) -> str:
H A Dparser.py22 Dict,
43 _ExprValue = Union[List[object], Dict[str, object], str, bool]
46 class QAPIExpression(Dict[str, object]):
354 def get_members(self) -> Dict[str, object]:
355 expr: Dict[str, object] = OrderedDict()
528 self.args: Dict[str, QAPIDoc.ArgSection] = OrderedDict()
529 self.features: Dict[str, QAPIDoc.ArgSection] = OrderedDict()
690 symbols_dict: Dict[str, 'QAPIDoc.ArgSection'],
762 args: Dict[str, QAPIDoc.ArgSection], what: str
/openbmc/qemu/python/qemu/qmp/
H A Dmessage.py11 Dict,
66 self._obj: Optional[Dict[str, object]] = None
120 def _object(self) -> Dict[str, object]:
145 def _deserialize(cls, data: bytes) -> Dict[str, object]:
H A Dlegacy.py30 Dict,
44 QMPMessage = Dict[str, Any]
50 QMPObject = Dict[str, object]
198 args: Optional[Dict[str, object]] = None) -> QMPMessage:
H A Dmodels.py14 Dict,
71 def _asdict(self) -> Dict[str, object]:
/openbmc/openbmc-test-automation/network/
H A Dtest_vlan_network.robot49 ${lan_config}= Get LAN Print Dict
69 ${lan_config}= Get LAN Print Dict
82 ${lan_config}= Get LAN Print Dict
93 ${lan_config}= Get LAN Print Dict
101 ${lan_config}= Get LAN Print Dict
112 ${lan_config}= Get LAN Print Dict
118 ${lan_config}= Get LAN Print Dict
130 ${lan_config}= Get LAN Print Dict
139 ${lan_config}= Get LAN Print Dict
155 ${lan_config}= Get LAN Print Dict
[all …]
/openbmc/linux/tools/perf/scripts/python/
H A Dgecko.py30 from typing import List, Dict, Optional, NamedTuple, Set, Tuple, Any
123 stringMap: Dict[str, int] = field(default_factory=dict)
125 stackMap: Dict[Tuple[Optional[int], int], int] = field(default_factory=dict)
126 frameMap: Dict[str, int] = field(default_factory=dict)
196 def _to_json_dict(self) -> Dict:
262 def process_event(param_dict: Dict) -> None: argument
/openbmc/qemu/docs/sphinx/
H A Dfakedbusdoc.py12 from typing import Any, Dict
23 def setup(app: Sphinx) -> Dict[str, Any]:
H A Ddbusdomain.py11 Dict,
285 content: Dict[str, List[IndexEntry]] = {}
332 object_types: Dict[str, ObjType] = {
350 initial_data: Dict[str, Dict[str, Tuple[Any]]] = {
358 def objects(self) -> Dict[str, ObjectEntry]:
H A Ddbusdoc.py16 Dict,
160 def setup(app: Sphinx) -> Dict[str, Any]:
/openbmc/openbmc-test-automation/ipmi/
H A Dtest_ipmi_network_configuration.robot47 ${lan_print_output}= Get LAN Print Dict ${CHANNEL_NUMBER} ipmi_cmd_type=inband
85 ${lan_config}= Get LAN Print Dict ${CHANNEL_NUMBER} ipmi_cmd_type=inband
98 ${lan_config}= Get LAN Print Dict ${CHANNEL_NUMBER} ipmi_cmd_type=inband
110 ${lan_config}= Get LAN Print Dict ${CHANNEL_NUMBER} ipmi_cmd_type=inband
120 ${lan_config}= Get LAN Print Dict ${CHANNEL_NUMBER} ipmi_cmd_type=inband
132 ${lan_config}= Get LAN Print Dict ${CHANNEL_NUMBER} ipmi_cmd_type=inband
145 ${lan_config}= Get LAN Print Dict ${CHANNEL_NUMBER} ipmi_cmd_type=inband
158 ${lan_config}= Get LAN Print Dict ${CHANNEL_NUMBER} ipmi_cmd_type=inband
219 ${initial_lan_config}= Get LAN Print Dict ${CHANNEL_NUMBER} ipmi_cmd_type=inband
H A Dtest_ipmi_disable.robot25 ${lan_print_info}= Get Lan Print Dict ${CHANNEL_NUMBER}
47 ${lan_print_info}= Get Lan Print Dict ${CHANNEL_NUMBER}
/openbmc/openbmc-test-automation/pldm/
H A Dtest_pldm_platform.robot81 ... Valid Dict pldm_output valid_values=${RESPONSE_DICT_GETPDR_SETSTATEEFFECTER}
84 ... Valid Dict pldm_output valid_values=${RESPONSE_DICT_GETPDR_FRURECORDSETIDENTIFIER}
90 ... Valid Dict pldm_output valid_values=${RESPONSE_DICT_GETPDR_STATESENSORPDR}
93 ... Valid Dict pldm_output valid_values=${RESPONSE_DICT_GETPDR_NUMERICEFFECTERPDR}
96 ... Valid Dict pldm_output valid_values=${RESPONSE_DICT_GETPDR_TERMINUSLOCATORPDR}
/openbmc/openbmc-tools/tof-voters/libvoters/subcmd/
H A Danalyze-reviews.py8 from typing import Dict
40 changes_per_user: Dict[str, UserChanges] = defaultdict(changes_factory)
60 comments_per_user: Dict[str, UserComments] = defaultdict(
H A Danalyze-commits.py8 from typing import Dict
40 changes_per_user: Dict[str, UserChanges] = defaultdict(changes_factory)
/openbmc/qemu/python/scripts/
H A Dmkvenv.py94 Dict,
636 def _make_version_constraint(info: Dict[str, str], install: bool) -> str:
661 group: Dict[str, Dict[str, str]],
757 group: Dict[str, Dict[str, str]] = {}
780 def _parse_groups(file: str) -> Dict[str, Dict[str, Any]]:
820 to_install: Dict[str, Dict[str, str]] = {}
/openbmc/openbmc-build-scripts/tools/
H A Downers6 from typing import Dict, List, Optional, Set, TypedDict
63 self, args: argparse.Namespace, owners: Dict[str, OwnersData]
134 args: argparse.Namespace, data: Dict[str, OwnersData]
/openbmc/qemu/python/qemu/utils/
H A Dqom_common.py23 Dict,
47 def make(cls, value: Dict[str, Any]) -> 'ObjectPropertyInfo':
H A Dqom_fuse.py41 Dict,
82 self.ino_map: Dict[str, int] = {}
/openbmc/qemu/tests/qemu-iotests/
H A Dtestenv.py28 from typing import List, Dict, Any, Optional, ContextManager
79 def prepare_subprocess(self, args: List[str]) -> Dict[str, str]:
94 def get_env(self) -> Dict[str, str]:
H A Dtestrunner.py30 from typing import List, Optional, Any, Sequence, Dict, \
66 self.cache: Dict[str, Dict[str, Dict[str, float]]]
/openbmc/linux/tools/testing/selftests/hid/tests/
H A Dtest_tablet.py16 from typing import Dict, Tuple
236 def legal_transitions() -> Dict[str, Tuple[PenState, ...]]:
262 def legal_transitions_with_invert() -> Dict[str, Tuple[PenState, ...]]:
300 def tolerated_transitions() -> Dict[str, Tuple[PenState, ...]]:
313 def tolerated_transitions_with_invert() -> Dict[str, Tuple[PenState, ...]]:
328 def broken_transitions() -> Dict[str, Tuple[PenState, ...]]:

123