Home | History | Annotate | Download | only in module

Lines Matching refs:_id

20     def __init__(self, zone, _id):
21 self._id = _id
23 self.temp_node = 'trip_point_' + _id + '_temp'
24 self.type_node = 'trip_point_' + _id + '_type'
45 def __init__(self, target, root, _id):
47 self.name = 'thermal_zone' + _id
56 def add_trip_point(self, _id):
57 self.trip_points[int(_id)] = TripPoint(self, _id)
98 def add_thermal_zone(self, _id):
99 self.zones[int(_id)] = ThermalZone(self.target, self.thermal_root, _id)