OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timeSpent
(Results
1 - 2
of
2
) sorted by null
/tools/tradefederation/core/util-apps/WifiUtil/src/com/android/tradefed/utils/wifi/
WifiConnector.java
227
long
timeSpent
;
228
timeSpent
= waitForCallable(new Callable<Boolean>() {
253
connectTimeout = calculateTimeLeft(connectTimeout,
timeSpent
);
254
timeSpent
= waitForCallable(new Callable<Boolean>() {
263
connectTimeout = calculateTimeLeft(connectTimeout,
timeSpent
);
264
timeSpent
= waitForCallable(new Callable<Boolean>() {
272
connectTimeout = calculateTimeLeft(connectTimeout,
timeSpent
);
388
private long calculateTimeLeft(long connectTimeout, long
timeSpent
) {
389
if (
timeSpent
> connectTimeout) {
392
return connectTimeout -
timeSpent
;
[
all
...]
/tools/tradefederation/core/src/com/android/tradefed/device/
TestDevice.java
483
long
timeSpent
= System.currentTimeMillis() - start;
484
if (
timeSpent
> INPUT_DISPATCH_READY_TIMEOUT) {
485
CLog.w("Timeout after waiting %dms on enabling of input dispatch",
timeSpent
);
[
all
...]
Completed in 77 milliseconds