Home
last modified time | relevance | path

Searched refs:getAllSettings (Results 1 – 7 of 7) sorted by relevance

/tools/tradefederation/core/javatests/com/android/tradefed/suite/checker/
DDeviceSettingCheckerTest.java63 when(mMockDevice.getAllSettings(Mockito.eq("global"))).thenReturn(mapGlobal); in testSettingsUnchanged()
64 when(mMockDevice.getAllSettings(Mockito.eq("secure"))).thenReturn(mapSecure); in testSettingsUnchanged()
65 when(mMockDevice.getAllSettings(Mockito.eq("system"))).thenReturn(mapSystem); in testSettingsUnchanged()
69 verify(mMockDevice, times(2)).getAllSettings(Mockito.eq("global")); in testSettingsUnchanged()
70 verify(mMockDevice, times(2)).getAllSettings(Mockito.eq("secure")); in testSettingsUnchanged()
71 verify(mMockDevice, times(2)).getAllSettings(Mockito.eq("system")); in testSettingsUnchanged()
84 when(mMockDevice.getAllSettings(Mockito.eq("secure"))).thenReturn(mapPreSecure); in testSettingsChanged()
85 when(mMockDevice.getAllSettings(Mockito.eq("system"))).thenReturn(mapPreSystem); in testSettingsChanged()
89 when(mMockDevice.getAllSettings(Mockito.eq("global"))) in testSettingsChanged()
95 verify(mMockDevice, times(2)).getAllSettings(Mockito.eq("secure")); in testSettingsChanged()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/suite/checker/
DDeviceSettingChecker.java173 Map<String, String> settingsPair = device.getAllSettings(namespace); in getSettingsHelper()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DITestDevice.java1008 public Map<String, String> getAllSettings(String namespace) throws DeviceNotAvailableException; in getAllSettings() method
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DTestDeviceTest.java5051 Map<String, String> map = mTestDevice.getAllSettings("system"); in testGetAllSettings()
5067 Map<String, String> map = mTestDevice.getAllSettings("system"); in testGetAllSettings_EmptyValue()
5085 assertNull(mTestDevice.getAllSettings("TEST")); in testGetAllSettings_unexpectedNamespace()
DNativeDeviceTest.java816 mTestDevice.getAllSettings("global"); in testGetAllSettingsSystemUser_exception()
/tools/tradefederation/core/src/com/android/tradefed/device/
DTestDevice.java2272 public Map<String, String> getAllSettings(String namespace) throws DeviceNotAvailableException { in getAllSettings() method in TestDevice
DNativeDevice.java5184 public Map<String, String> getAllSettings(String namespace) throws DeviceNotAvailableException { in getAllSettings() method in NativeDevice