Searched refs:data_points (Results 1 – 3 of 3) sorted by relevance
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | monsoon.py | 422 def __init__(self, data_points, timestamps, hz, voltage, offset=0): argument 433 self._data_points = data_points 441 self.data_points = self._data_points[self.offset:] 452 len_data_pt = len(self.data_points) 455 cur = sum(self.data_points) * 1000 / len_data_pt 462 charge = (sum(self.data_points) / self.hz) * 1000 / 3600 575 self.data_points = self._data_points[self.offset:] 585 for t, d in zip(self.timestamps, self.data_points): 601 for d in self.data_points: 624 return len(self.data_points) [all …]
|
/tools/test/connectivity/acts/framework/acts/test_utils/bt/ |
D | PowerBaseTest.py | 290 monsoon_data.data_points, monsoon_data.timestamps, monsoon_data.hz, 328 self.measure_time, self.idle_time, len(self.data_points))) 352 for t, d in zip(self.timestamps, self.data_points): 421 ).format(len(self.data_points), self.hz, self.offset)) 437 for t, d in zip(self.timestamps, self.data_points): 504 len(self.end_times), len(self.data_points))) 527 for t, d in zip(self.timestamps, self.data_points):
|
/tools/test/connectivity/acts/framework/acts/test_utils/wifi/ |
D | wifi_power_test_utils.py | 72 [current_data.extend(x.data_points) for x in results]
|