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

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/rpcsvc/
rstat.x 75 rstat_timeval boottime;
94 rstat_timeval boottime;
rstat.h 47 rstat_timeval boottime; member in struct:statstime
67 rstat_timeval boottime; member in struct:statsswtch
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
rstat.x 75 rstat_timeval boottime;
94 rstat_timeval boottime;
rstat.h 47 rstat_timeval boottime; member in struct:statstime
67 rstat_timeval boottime; member in struct:statsswtch
  /external/chromium_org/base/time/
time_mac.cc 30 struct timeval boottime; local
32 size_t size = sizeof(boottime);
33 int kr = sysctl(mib, arraysize(mib), &boottime, &size, NULL, 0);
36 (base::Time::FromTimeT(boottime.tv_sec) +
37 base::TimeDelta::FromMicroseconds(boottime.tv_usec));
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollElasticityController.mm 40 // Get how long system has been up. Found by looking getting "boottime" from the kernel.
41 static struct timeval boottime = {0, 0};
42 if (!boottime.tv_sec) {
44 size_t size = sizeof(boottime);
45 if (-1 == sysctl(mib, 2, &boottime, &size, 0, 0))
46 boottime.tv_sec = 0;
49 if (boottime.tv_sec && -1 != gettimeofday(&now, 0)) {
51 timersub(&now, &boottime, &uptime);

Completed in 110 milliseconds