Home
last modified time | relevance | path

Searched refs:typeTuple (Results 1 – 2 of 2) sorted by relevance

/openbmc/sdbusplus/tools/sdbusplus/
H A Dproperty.py120 typeTuple = self.__type_tuple()
121 return self.__enum_headers(typeTuple, interface)
123 def __enum_headers(self, typeTuple, interface=None): argument
125 if "enum" == typeTuple[0]:
127 enumType = typeTuple[1][0][0]
141 if len(typeTuple[1]) == 0:
147 for t in typeTuple[1]:
158 typeTuple = self.__type_tuple()
159 return self.__parse_cpp_type__(typeTuple)
274 def __parse_cpp_type__(self, typeTuple): argument
[all …]
/openbmc/phosphor-fan-presence/control/
H A Dgen-fan-zone-defs.py36 typeTuple = preprocess_yaml_type_array(typeArray).pop(0)
37 return get_cpp_type(typeTuple)
65 def get_cpp_type(typeTuple): argument
87 if len(typeTuple) != 2:
88 raise RuntimeError("Invalid typeTuple %s" % typeTuple)
90 first = typeTuple[0]
97 if len(typeTuple[1]) != 0:
98 raise RuntimeError("Invalid typeTuple %s" % typeTuple)
103 rest = typeTuple[1]