OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:remoteClock
(Results
1 - 2
of
2
) sorted by null
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
WaltUsbConnection.java
42
private RemoteClockInfo
remoteClock
= new RemoteClockInfo();
145
remoteClock
.baseTime = syncClock(fd, ep_out, ep_in);
146
remoteClock
.minLag = 0;
147
remoteClock
.maxLag = getMaxE();
151
logger.log("Synced clocks, maxE=" +
remoteClock
.maxLag + "us");
152
Log.i(TAG,
remoteClock
.toString());
153
return
remoteClock
;
163
remoteClock
.minLag = getMinE();
164
remoteClock
.maxLag = getMaxE();
WaltTcpConnection.java
51
private RemoteClockInfo
remoteClock
= new RemoteClockInfo();
211
remoteClock
.baseTime = RemoteClockInfo.microTime() - Long.parseLong(parts[1]);
212
remoteClock
.minLag = Integer.parseInt(parts[2]);
213
remoteClock
.maxLag = Integer.parseInt(parts[3]);
218
logger.log("Synced clocks via TCP bridge:\n" +
remoteClock
);
219
return
remoteClock
;
Completed in 178 milliseconds