Searched refs:getAllSettings (Results 1 – 7 of 7) sorted by relevance
/tools/tradefederation/core/javatests/com/android/tradefed/suite/checker/ |
D | DeviceSettingCheckerTest.java | 63 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/ |
D | DeviceSettingChecker.java | 173 Map<String, String> settingsPair = device.getAllSettings(namespace); in getSettingsHelper()
|
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/ |
D | ITestDevice.java | 1008 public Map<String, String> getAllSettings(String namespace) throws DeviceNotAvailableException; in getAllSettings() method
|
/tools/tradefederation/core/javatests/com/android/tradefed/device/ |
D | TestDeviceTest.java | 5051 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()
|
D | NativeDeviceTest.java | 816 mTestDevice.getAllSettings("global"); in testGetAllSettingsSystemUser_exception()
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | TestDevice.java | 2272 public Map<String, String> getAllSettings(String namespace) throws DeviceNotAvailableException { in getAllSettings() method in TestDevice
|
D | NativeDevice.java | 5184 public Map<String, String> getAllSettings(String namespace) throws DeviceNotAvailableException { in getAllSettings() method in NativeDevice
|