Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/device/
DITestDevice.java690 public boolean startUser(int userId) throws DeviceNotAvailableException; in startUser() method
702 public boolean startUser(int userId, boolean waitFlag) throws DeviceNotAvailableException; in startUser() method
DTestDevice.java1167 public boolean startUser(int userId) throws DeviceNotAvailableException { in startUser() method in TestDevice
1168 return startUser(userId, false); in startUser()
1173 public boolean startUser(int userId, boolean waitFlag) throws DeviceNotAvailableException { in startUser() method in TestDevice
DNativeDevice.java3875 public boolean startUser(int userId) throws DeviceNotAvailableException { in startUser() method in NativeDevice
3881 public boolean startUser(int userId, boolean waitFlag) throws DeviceNotAvailableException { in startUser() method in NativeDevice
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DTestDeviceTest.java2690 assertTrue(mTestDevice.startUser(10)); in testStartUser()
2700 assertFalse(mTestDevice.startUser(10)); in testStartUser_failed()
2720 assertTrue(mTestDevice.startUser(10, true)); in testStartUser_wait()
2738 mTestDevice.startUser(10, true); in testStartUser_wait_api27()
DNativeDeviceTest.java629 mTestDevice.startUser(0, true); in testStartUserFlags_exception()