Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
DCreateUserPreparerTest.java63 doReturn(true).when(mMockDevice).startUser(5, true); in testSetUp_tearDown()
101 doReturn(true).when(mMockDevice).startUser(13, true); in testSetUp_tearDown_reuseTestUser()
139 doReturn(true).when(mMockDevice).startUser(12, true); in testSetUp_tearDown_reuseTestUser_noExistingTestUser()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DITestDevice.java729 public boolean startUser(int userId) throws DeviceNotAvailableException; in startUser() method
741 public boolean startUser(int userId, boolean waitFlag) throws DeviceNotAvailableException; in startUser() method
/tools/tradefederation/core/src/com/android/tradefed/device/
DTestDevice.java1302 public boolean startUser(int userId) throws DeviceNotAvailableException { in startUser() method in TestDevice
1303 return startUser(userId, false); in startUser()
1308 public boolean startUser(int userId, boolean waitFlag) throws DeviceNotAvailableException { in startUser() method in TestDevice
DNativeDevice.java4181 public boolean startUser(int userId) throws DeviceNotAvailableException { in startUser() method in NativeDevice
4187 public boolean startUser(int userId, boolean waitFlag) throws DeviceNotAvailableException { in startUser() method in NativeDevice
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DTestDeviceTest.java2816 assertTrue(mTestDevice.startUser(10)); in testStartUser()
2826 assertFalse(mTestDevice.startUser(10)); in testStartUser_failed()
2846 assertTrue(mTestDevice.startUser(10, true)); in testStartUser_wait()
2864 mTestDevice.startUser(10, true); in testStartUser_wait_api27()
DNativeDeviceTest.java631 mTestDevice.startUser(0, true); in testStartUserFlags_exception()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DCreateUserPreparer.java58 if (!device.startUser(mCreatedUserId, true)) { in setUp()
/tools/tradefederation/contrib/src/com/android/aetest/tradefed/targetprep/
DAeTestManagedProfileCreator.java93 device.startUser(mManagedProfileUserId); in setUp()