Home
last modified time | relevance | path

Searched refs:has_shell_command (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/python/mobly/tests/mobly/controllers/android_device_lib/services/
Dlogcat_test.py466 mock_adb_proxy.has_shell_command.side_effect = lambda command: {
496 mock_adb_proxy.has_shell_command.side_effect = lambda command: {
531 mock_adb_proxy.has_shell_command.side_effect = lambda command: {
565 mock_adb_proxy.has_shell_command.side_effect = lambda command: {
601 mock_adb_proxy.has_shell_command.side_effect = lambda command: {
/aosp_15_r20/device/google/cuttlefish/host/libs/config/
Dcustom_actions.cpp383 bool has_shell_command = in AddJsonCustomActionConfigs() local
388 if (!!has_shell_command + !!has_server + !!has_device_states + in AddJsonCustomActionConfigs()
396 if (has_shell_command) { in AddJsonCustomActionConfigs()
/aosp_15_r20/external/python/mobly/tests/mobly/controllers/android_device_lib/
Dadb_test.py883 adb.AdbProxy().has_shell_command(MOCK_SHELL_COMMAND)
894 self.assertTrue(adb.AdbProxy().has_shell_command(MOCK_SHELL_COMMAND))
902 self.assertFalse(adb.AdbProxy().has_shell_command(MOCK_SHELL_COMMAND))
910 self.assertFalse(adb.AdbProxy().has_shell_command(MOCK_SHELL_COMMAND))
/aosp_15_r20/external/python/mobly/mobly/controllers/android_device_lib/services/
Dlogcat.py85 if not self._ad.adb.has_shell_command('logpersist.start'):
/aosp_15_r20/external/python/mobly/mobly/controllers/android_device_lib/
Dadb.py439 def has_shell_command(self, command) -> bool: member in AdbProxy