HomeSort by relevance Sort by last modified time
    Searched refs:epoch_seconds (Results 1 - 7 of 7) sorted by null

  /external/autotest/server/cros/clique_lib/
clique_runner.py 127 epoch_seconds = time.time()
128 logging.info('Syncing epoch time on DUTs to %d seconds.', epoch_seconds)
130 dut.wifi_client.shill.sync_time_to(epoch_seconds)
  /external/autotest/server/cros/network/
wpa_cli_proxy.py 370 def sync_time_to(self, epoch_seconds):
372 Sync time on the DUT to |epoch_seconds| from the epoch.
374 @param epoch_seconds float: number of seconds since the epoch.
378 self._host.run('date -u %f' % epoch_seconds, ignore_status=True)
wifi_client.py 487 epoch_seconds = time.time()
488 self.shill.sync_time_to(epoch_seconds)
    [all...]
  /external/autotest/client/cros/networking/
android_xmlrpc_server.py 219 def sync_time_to(self, epoch_seconds):
220 """Sync time on the DUT to |epoch_seconds| from the epoch.
222 @param epoch_seconds: float number of seconds from the epoch.
225 self.ad.droid.setTime(epoch_seconds)
shill_xmlrpc_server.py 362 def sync_time_to(self, epoch_seconds):
363 """Sync time on the DUT to |epoch_seconds| from the epoch.
365 @param epoch_seconds: float number of seconds from the epoch.
368 utils.run('date -u --set=@%f' % epoch_seconds)
  /external/autotest/server/
site_linux_system.py 357 epoch_seconds = time.time()
361 (epoch_seconds, busybox_date))
  /system/connectivity/shill/test-rpc-proxy/
proxy_rpc_server.cc 459 double epoch_seconds(params_in[0]);
461 double microseconds = modf(epoch_seconds, &seconds) * 1000000;

Completed in 113 milliseconds