Searched refs:cells (Results 1 – 3 of 3) sorted by relevance
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/cellular/ |
D | keysight_5g_testapp.py | 78 def _format_cells(cells): argument 80 if isinstance(cells, int): 81 return 'CELL{}'.format(cells) 82 elif isinstance(cells, str): 83 return cells 84 elif isinstance(cells, list): 86 Keysight5GTestApp._format_cells(cell) for cell in cells 395 def configure_noncontiguous_nr_channels(self, cells, band, channels): argument 403 for cell in cells: 406 for cell, channel in zip(cells, channels): [all …]
|
/tools/test/connectivity/acts/framework/acts/controllers/uxm_lib/ |
D | uxm_cellular_simulator.py | 165 self.cells = [] 390 self.cells = cell_info 404 cell_number = self.cells[0][self._KEY_CELL_NUMBER] 445 for cell in self.cells: 673 first_cell_type = self.cells[0][self._KEY_CELL_TYPE] 674 first_cell_number = self.cells[0][self._KEY_CELL_NUMBER] 675 if len(self.cells) == 2: 676 second_cell_type = self.cells[1][self._KEY_CELL_TYPE] 677 second_cell_number = self.cells[1][self._KEY_CELL_NUMBER] 685 if len(self.cells) == 2: [all …]
|
/tools/test/connectivity/acts/framework/acts/controllers/rohdeschwarz_lib/ |
D | cmx500.py | 441 cells = self._get_cells_in_same_ta(cell) 442 return next((c for c in cells if isinstance(c, LteBaseStation)), 458 cells = self._get_cells_in_same_ta(cell) 459 return next((c for c in cells if isinstance(c, NrBaseStation)), 518 if bts._cell in t.cells) 520 c for c in self.bts if c != bts and c._cell in tracking_area.cells 777 if self._cell in t.cells))
|