Searched refs:startUser (Results 1 – 8 of 8) sorted by relevance
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/ |
D | CreateUserPreparerTest.java | 63 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/ |
D | ITestDevice.java | 729 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/ |
D | TestDevice.java | 1302 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
|
D | NativeDevice.java | 4181 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/ |
D | TestDeviceTest.java | 2816 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()
|
D | NativeDeviceTest.java | 631 mTestDevice.startUser(0, true); in testStartUserFlags_exception()
|
/tools/tradefederation/core/src/com/android/tradefed/targetprep/ |
D | CreateUserPreparer.java | 58 if (!device.startUser(mCreatedUserId, true)) { in setUp()
|
/tools/tradefederation/contrib/src/com/android/aetest/tradefed/targetprep/ |
D | AeTestManagedProfileCreator.java | 93 device.startUser(mManagedProfileUserId); in setUp()
|