Home
last modified time | relevance | path

Searched refs:shellCommandExecutor (Results 1 – 12 of 12) sorted by relevance

/cts/tests/tests/time/shell_utils/common/android/app/time/cts/shell/
DLocationShellHelper.java47 public LocationShellHelper(DeviceShellCommandExecutor shellCommandExecutor) { in LocationShellHelper() argument
48 mShellCommandExecutor = Objects.requireNonNull(shellCommandExecutor); in LocationShellHelper()
DNetworkTimeUpdateServiceShellHelper.java40 public NetworkTimeUpdateServiceShellHelper(DeviceShellCommandExecutor shellCommandExecutor) { in NetworkTimeUpdateServiceShellHelper() argument
41 mShellCommandExecutor = Objects.requireNonNull(shellCommandExecutor); in NetworkTimeUpdateServiceShellHelper()
DLocationTimeZoneManagerShellHelper.java75 public LocationTimeZoneManagerShellHelper(DeviceShellCommandExecutor shellCommandExecutor) { in LocationTimeZoneManagerShellHelper() argument
76 mShellCommandExecutor = Objects.requireNonNull(shellCommandExecutor); in LocationTimeZoneManagerShellHelper()
DTimeZoneDetectorShellHelper.java85 public TimeZoneDetectorShellHelper(DeviceShellCommandExecutor shellCommandExecutor) { in TimeZoneDetectorShellHelper() argument
86 mShellCommandExecutor = Objects.requireNonNull(shellCommandExecutor); in TimeZoneDetectorShellHelper()
DTimeDetectorShellHelper.java194 public TimeDetectorShellHelper(DeviceShellCommandExecutor shellCommandExecutor) { in TimeDetectorShellHelper() argument
195 mShellCommandExecutor = Objects.requireNonNull(shellCommandExecutor); in TimeDetectorShellHelper()
DDeviceConfigShellHelper.java65 public DeviceConfigShellHelper(DeviceShellCommandExecutor shellCommandExecutor) { in DeviceConfigShellHelper() argument
66 mShellCommandExecutor = Objects.requireNonNull(shellCommandExecutor); in DeviceConfigShellHelper()
DFakeTimeZoneProviderAppShellHelper.java98 public FakeTimeZoneProviderAppShellHelper(DeviceShellCommandExecutor shellCommandExecutor) { in FakeTimeZoneProviderAppShellHelper() argument
99 mShellCommandExecutor = Objects.requireNonNull(shellCommandExecutor); in FakeTimeZoneProviderAppShellHelper()
/cts/hostsidetests/time/host/src/android/time/cts/host/
DLocationTimeZoneManagerStatsTest.java86 DeviceShellCommandExecutor shellCommandExecutor = new HostShellCommandExecutor(device); in setUp() local
88 new LocationTimeZoneManagerShellHelper(shellCommandExecutor); in setUp()
98 mTimeZoneDetectorShellHelper = new TimeZoneDetectorShellHelper(shellCommandExecutor); in setUp()
99 mLocationShellHelper = new LocationShellHelper(shellCommandExecutor); in setUp()
100 mDeviceConfigShellHelper = new DeviceConfigShellHelper(shellCommandExecutor); in setUp()
165 new FakeTimeZoneProviderAppShellHelper(shellCommandExecutor); in setUp()
DTimeZoneDetectorStatsTest.java59 DeviceShellCommandExecutor shellCommandExecutor = new HostShellCommandExecutor(getDevice()); in setUp() local
60 mTimeZoneDetectorShellHelper = new TimeZoneDetectorShellHelper(shellCommandExecutor); in setUp()
61 mLocationShellHelper = new LocationShellHelper(shellCommandExecutor); in setUp()
62 mDeviceConfigShellHelper = new DeviceConfigShellHelper(shellCommandExecutor); in setUp()
DLocationTimeZoneManagerHostTest.java101 DeviceShellCommandExecutor shellCommandExecutor = new HostShellCommandExecutor(getDevice()); in setUp() local
103 new LocationTimeZoneManagerShellHelper(shellCommandExecutor); in setUp()
113 mTimeZoneDetectorShellHelper = new TimeZoneDetectorShellHelper(shellCommandExecutor); in setUp()
114 mLocationShellHelper = new LocationShellHelper(shellCommandExecutor); in setUp()
115 mDeviceConfigShellHelper = new DeviceConfigShellHelper(shellCommandExecutor); in setUp()
180 new FakeTimeZoneProviderAppShellHelper(shellCommandExecutor); in setUp()
/cts/tests/backup/src/android/backup/cts/
DAppLocalesBackupTest.java499 DeviceShellCommandExecutor shellCommandExecutor) throws Exception { in isAutoDetectionEnabled() argument
500 return shellCommandExecutor.executeToBoolean(SHELL_COMMAND_IS_AUTO_DETECTION_ENABLED); in isAutoDetectionEnabled()
504 boolean enabled, DeviceShellCommandExecutor shellCommandExecutor) throws Exception { in setAutoTimeEnabled() argument
512 return isAutoDetectionEnabled(shellCommandExecutor) == enabled; in setAutoTimeEnabled()
/cts/tests/tests/time/src/android/app/time/cts/
DTimeManagerTest.java96 DeviceShellCommandExecutor shellCommandExecutor = new InstrumentationShellCommandExecutor( in before() local
98 mTimeDetectorShellHelper = new TimeDetectorShellHelper(shellCommandExecutor); in before()
99 mTimeZoneDetectorShellHelper = new TimeZoneDetectorShellHelper(shellCommandExecutor); in before()
100 mDeviceConfigShellHelper = new DeviceConfigShellHelper(shellCommandExecutor); in before()