Home
last modified time | relevance | path

Searched refs:timeoutMs (Results 1 – 9 of 9) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/cloud/
DMultiUserSetupUtil.java42 long timeoutMs) { in prepareRemoteUser() argument
48 remoteInstance, options, runUtil, timeoutMs, createUserCommand.split(" ")); in prepareRemoteUser()
61 long timeoutMs) { in addExtraCvdUser() argument
68 remoteInstance, options, runUtil, timeoutMs, createUserCommand.split(" ")); in addExtraCvdUser()
86 long timeoutMs) { in setupNetworkInterface() argument
98 remoteInstance, options, runUtil, timeoutMs, mtapCommand.split(" ")); in setupNetworkInterface()
106 remoteInstance, options, runUtil, timeoutMs, wtapCommand.split(" ")); in setupNetworkInterface()
120 long timeoutMs) { in prepareRemoteHomeDir() argument
131 timeoutMs, in prepareRemoteHomeDir()
140 remoteInstance, options, runUtil, timeoutMs, chownUser); in prepareRemoteHomeDir()
[all …]
DRemoteSshUtil.java45 long timeoutMs, in remoteSshCommandExec() argument
56 return runUtil.runTimedCmd(timeoutMs, stdout, stderr, sshCmd.toArray(new String[0])); in remoteSshCommandExec()
74 long timeoutMs, in remoteSshCommandExec() argument
77 remoteInstance, options, runUtil, timeoutMs, null, null, command); in remoteSshCommandExec()
DGceManager.java484 long timeoutMs, in remoteSshCommandExecution() argument
486 return RemoteSshUtil.remoteSshCommandExec(gceAvd, options, runUtil, timeoutMs, command); in remoteSshCommandExecution()
/tools/tradefederation/core/src/com/android/tradefed/util/
DDeviceRecoveryModeUtil.java37 public static void bootOutOfRecovery(IManagedTestDevice device, long timeoutMs) in bootOutOfRecovery() argument
39 bootOutOfRecovery(device, timeoutMs, 0); in bootOutOfRecovery()
53 long timeoutMs, long bufferMs) in bootOutOfRecovery() argument
65 managedDevice.waitForDeviceAvailable(timeoutMs); in bootOutOfRecovery()
DLogcatEventParser.java147 public LogcatEvent waitForEvent(long timeoutMs) throws InterruptedException { in waitForEvent() argument
148 return mEventQueue.poll(timeoutMs, TimeUnit.MILLISECONDS); in waitForEvent()
/tools/tradefederation/core/src/com/android/tradefed/testtype/
DHostGTest.java77 public CommandResult executeHostCommand(String cmd, long timeoutMs) { in executeHostCommand() argument
79 return RunUtil.getDefault().runTimedCmd(timeoutMs, cmds); in executeHostCommand()
89 String cmd, long timeoutMs, IShellOutputReceiver receiver) { in executeHostGTestCommand() argument
111 result = runUtil.runTimedCmd(timeoutMs, stream, null, cmds); in executeHostGTestCommand()
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDeviceStateMonitor.java85 public void setDefaultOnlineTimeout(long timeoutMs) { in setDefaultOnlineTimeout() argument
86 mDefaultOnlineTimeout = timeoutMs; in setDefaultOnlineTimeout()
93 public void setDefaultAvailableTimeout(long timeoutMs) { in setDefaultAvailableTimeout() argument
94 mDefaultAvailableTimeout = timeoutMs; in setDefaultAvailableTimeout()
DIDeviceStateMonitor.java167 public void setDefaultOnlineTimeout(long timeoutMs); in setDefaultOnlineTimeout() argument
172 public void setDefaultAvailableTimeout(long timeoutMs); in setDefaultAvailableTimeout() argument
/tools/test/graphicsbenchmark/functional_tests/java/src/com/android/game/qualification/tests/
DTestActivity.java49 public void waitUntilDestroyed(int timeoutMs) throws InterruptedException { in waitUntilDestroyed() argument
50 boolean timeout = latch.await(timeoutMs, TimeUnit.MILLISECONDS); in waitUntilDestroyed()