Home
last modified time | relevance | path

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

/test/framework/harnesses/host_controller/command_processor/
Dcommand_dut_test.py41 self._command.SetOtherVolumes(mock_adb_proxy, 5)
51 self._command.SetOtherVolumes(mock_adb_proxy, 0, 8.1)
59 self._command.SetOtherVolumes(mock_adb_proxy, 10, 9.0)
127 self._command.SetOtherVolumes = mock.Mock()
138 self._command.SetOtherVolumes.assert_called_with(mock.ANY, 0, 8.0)
143 self._command.SetOtherVolumes = mock.Mock()
155 self._command.SetOtherVolumes.assert_called_with(mock.ANY, 30, 9.0)
Dcommand_dut.py116 self.SetOtherVolumes(adb_proxy, 0, args.version)
120 self.SetOtherVolumes(adb_proxy, args.volume_levels,
126 def SetOtherVolumes(self, adb_proxy, volume_level, version=None): member in CommandDUT