Home
last modified time | relevance | path

Searched refs:runShellCommandRwe (Results 1 – 15 of 15) sorted by relevance

/packages/modules/AdServices/shared/tests/device-side/java/com/android/adservices/shared/testing/device/
DDeviceGatewayImplTest.java47 assertThrows(NullPointerException.class, () -> mDeviceGateway.runShellCommandRwe(null)); in testRunShellCommandRwe_nullInput()
59 var output = mDeviceGateway.runShellCommandRwe(input); in testRunShellCommandRwe_withFormatting_noErr()
73 var output = mDeviceGateway.runShellCommandRwe(input); in testRunShellCommandRwe_noFormatting_noErr()
90 var output = mDeviceGateway.runShellCommandRwe(input); in testRunShellCommandRwe_withFormatting_errOnly()
105 var output = mDeviceGateway.runShellCommandRwe(input); in testRunShellCommandRwe_noFormatting_errOnly()
121 var output = mDeviceGateway.runShellCommandRwe(input); in testRunShellCommandRwe_withFormatting_errOnly_SMinus()
137 var output = mDeviceGateway.runShellCommandRwe(input); in testRunShellCommandRwe_noFormatting_errOnly_SMinus()
/packages/modules/AdServices/shared/tests/host-side/java/com/android/adservices/shared/testing/device/
DHostSideDeviceGatewayTest.java46 assertThrows(NullPointerException.class, () -> mDeviceGateway.runShellCommandRwe(null)); in testRunShellCommandRwe_nullInput()
56 var output = mDeviceGateway.runShellCommandRwe(input); in testRunShellCommandRwe_withFormatting_noErr()
68 var output = mDeviceGateway.runShellCommandRwe(input); in testRunShellCommandRwe_noFormatting_noErr()
79 var output = mDeviceGateway.runShellCommandRwe(input); in testRunShellCommandRwe_withFormatting_errOnly()
92 var output = mDeviceGateway.runShellCommandRwe(input); in testRunShellCommandRwe_noFormatting_errOnly()
/packages/modules/AdServices/adservices/tests/test-util/host-side/com/android/adservices/common/
DHostSideAdServicesShellCommandHelper.java35 protected CommandResult runShellCommandRwe(String cmd) { in runShellCommandRwe() method in HostSideAdServicesShellCommandHelper
36 return TestDeviceHelper.runShellCommandRwe("%s", cmd); in runShellCommandRwe()
/packages/modules/AdServices/shared/testing-libraries/host-side/java/com/android/adservices/shared/testing/
DTestDeviceHelper.java100 public static CommandResult runShellCommandRwe( in runShellCommandRwe() method in TestDeviceHelper
102 return runShellCommandRwe(TestDeviceHelper.getTestDevice(), cmdFmt, cmdArgs); in runShellCommandRwe()
110 public static CommandResult runShellCommandRwe( in runShellCommandRwe() method in TestDeviceHelper
/packages/modules/AdServices/shared/testing-libraries/side-less/java/com/android/adservices/shared/testing/device/
DDeviceConfigShellCmdImpl.java62 ShellCommandOutput output = mGateway.runShellCommandRwe(input); in setSyncDisabledMode()
85 ShellCommandOutput output = mGateway.runShellCommandRwe(input); in getSyncDisabledMode()
DDeviceGateway.java37 ShellCommandOutput runShellCommandRwe(ShellCommandInput input); in runShellCommandRwe() method
DAbstractDeviceGateway.java46 ShellCommandOutput output = runShellCommandRwe(input); in runShellCommand()
/packages/modules/AdServices/shared/tests/side-less/java/com/android/adservices/shared/testing/device/
DAbstractDeviceGatewayTest.java132 public ShellCommandOutput runShellCommandRwe(ShellCommandInput input) { in runShellCommandRwe() method in AbstractDeviceGatewayTest.ConcreteDeviceGateway
133 return mFakeGateway.runShellCommandRwe(input); in runShellCommandRwe()
/packages/modules/AdServices/adservices/tests/test-util/side-less/com/android/adservices/common/
DAbstractAdServicesShellCommandHelper.java134 CommandResult res = runShellCommandRwe(cmd); in runCommandRwe()
150 protected abstract CommandResult runShellCommandRwe(String cmd); in runShellCommandRwe() method in AbstractAdServicesShellCommandHelper
/packages/modules/AdServices/shared/testing-libraries/host-side/java/com/android/adservices/shared/testing/device/
DHostSideDeviceGateway.java39 public ShellCommandOutput runShellCommandRwe(ShellCommandInput input) { in runShellCommandRwe() method in HostSideDeviceGateway
/packages/modules/AdServices/adservices/tests/test-util/java/com/android/adservices/common/
DAdServicesShellCommandHelper.java51 protected CommandResult runShellCommandRwe(String cmd) { in runShellCommandRwe() method in AdServicesShellCommandHelper
/packages/modules/AdServices/shared/testing-libraries/side-less/java/com/android/adservices/shared/testing/
DSdkSandboxShellCmdImpl.java89 ShellCommandOutput output = mGateway.runShellCommandRwe(input); in setState()
/packages/modules/AdServices/shared/testing-libraries/side-less/java/com/android/adservices/shared/meta_testing/
DFakeDeviceGateway.java99 public ShellCommandOutput runShellCommandRwe(ShellCommandInput input) { in runShellCommandRwe() method in FakeDeviceGateway
/packages/modules/AdServices/shared/testing-libraries/device-side/java/com/android/adservices/shared/testing/device/
DDeviceGatewayImpl.java49 public ShellCommandOutput runShellCommandRwe(ShellCommandInput input) { in runShellCommandRwe() method in DeviceGatewayImpl
/packages/modules/AdServices/adservices/tests/unittest/adservices-test-utility/side-less/com/android/adservices/common/
DAbstractAdServicesShellCommandHelperTest.java231 protected CommandResult runShellCommandRwe(String cmd) { in runShellCommandRwe() method in AbstractAdServicesShellCommandHelperTest.FakeAdServicesShellCommandHelper