HomeSort by relevance Sort by last modified time
    Searched defs:timeval (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
_timeval.h 10 struct timeval struct
  /external/syslinux/gpxe/src/include/sys/
time.h 8 struct timeval { struct
18 extern int gettimeofday ( struct timeval *tv, struct timezone *tz );
  /external/toybox/toys/other/
hwclock.c 60 struct timeval timeval; local
102 if (gettimeofday(&timeval, 0)) perror_exit("gettimeofday failed");
103 if (!(TT.utc ? gmtime_r : localtime_r)(&timeval.tv_sec, &tm))
115 timeval.tv_sec = time;
116 timeval.tv_usec = 0; // todo: fixit
122 if (!TT.utc) timeval.tv_sec += tzone.tz_minuteswest * 60;
132 if (settimeofday(&timeval, &tzone)) perror_exit("settimeofday failed");
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xos.h 93 * Get struct timeval and struct tm
104 struct timeval { struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
global.h 31 /* for timeval and timespec */
137 struct timeval { struct
149 typedef struct timeval snd_timestamp_t;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
time.h 31 struct timeval struct
36 # endif /* struct timeval */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
time.h 31 struct timeval struct
36 # endif /* struct timeval */
  /bionic/libc/kernel/uapi/linux/
time.h 29 struct timeval { struct
45 struct timeval it_interval;
46 struct timeval it_value;
  /cts/hostsidetests/sustainedperf/shadertoy_android/jni/
shadertoy_renderer.cpp 35 timespec timeval; local
36 clock_gettime(CLOCK_REALTIME, &timeval);
37 double time = 1000.0 * timeval.tv_sec + (double) timeval.tv_nsec / 1e6;
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
time.h 54 struct timeval { struct
60 * Structure defined by POSIX.1b to be like a timeval.
145 struct timeval it_interval; /* timer interval */
146 struct timeval it_value; /* current value */
193 int gettimeofday (struct timeval *tp, void *ignore);
  /external/kernel-headers/original/uapi/linux/
time.h 16 struct timeval { struct
41 struct timeval it_interval; /* timer interval */
42 struct timeval it_value; /* current value */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
time.h 15 struct timeval { struct
48 struct timeval it_interval; /* timer interval */
49 struct timeval it_value; /* current value */
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
EmuThunk.c 38 struct timeval settimer_timeval;
156 struct timeval timeval; local
159 gettimeofday (&timeval, NULL);
160 delta = ((UINT64)timeval.tv_sec * 1000) + (timeval.tv_usec / 1000)
163 settimer_timeval = timeval;
296 struct timeval start, end;
  /external/libvncserver/libvncserver/
sockets.c 81 struct timeval struct
287 struct timeval tv;
575 struct timeval tv;
667 struct timeval tv;
745 struct timeval tv;
  /external/ppp/pppd/plugins/radius/
avpair.c 532 time_t timeval; local
634 timeval = time (0);
635 tm = localtime (&timeval);
  /external/webrtc/webrtc/base/
timeutils.cc 92 struct timeval { struct in namespace:rtc
98 static int gettimeofday(struct timeval *tv, void *tz) {
128 struct timeval timeval; local
129 if (gettimeofday(&timeval, NULL) < 0) {
131 timeval.tv_sec = timeval.tv_usec = 0;
133 time_t secs = timeval.tv_sec;
135 *microseconds = timeval.tv_usec;
  /external/adhd/cras/src/tests/
dbus_test.cc 728 struct timeval timeval; local
744 timeval.tv_sec = interval / 1000;
745 timeval.tv_usec = (interval % 1000) * 1000;
747 r = select(nfds, &readfds, &writefds, NULL, &timeval);
  /external/curl/lib/
curl_setup_once.h 106 * Definition of timeval struct for platforms that don't have it.
110 struct timeval { struct
  /frameworks/base/core/java/android/net/
LocalSocketImpl.java 457 StructTimeval timeval = Os.getsockoptTimeval(fd, OsConstants.SOL_SOCKET, local
459 toReturn = (int) timeval.toMillis();
521 StructTimeval timeval = StructTimeval.fromMillis(intValue); local
523 timeval);
525 timeval);
  /prebuilts/go/darwin-x86/src/runtime/
defs_dragonfly_amd64.go 181 type timeval struct { type
186 func (tv *timeval) set_usec(x int32) {
191 it_interval timeval
192 it_value timeval
defs_openbsd_386.go 144 type timeval struct { type
149 func (tv *timeval) set_usec(x int32) {
154 it_interval timeval
155 it_value timeval
defs_openbsd_amd64.go 154 type timeval struct { type
159 func (tv *timeval) set_usec(x int32) {
164 it_interval timeval
165 it_value timeval
defs_openbsd_arm.go 144 type timeval struct { type
149 func (tv *timeval) set_usec(x int32) {
154 it_interval timeval
155 it_value timeval
  /prebuilts/go/linux-x86/src/runtime/
defs_dragonfly_amd64.go 181 type timeval struct { type
186 func (tv *timeval) set_usec(x int32) {
191 it_interval timeval
192 it_value timeval
defs_openbsd_386.go 144 type timeval struct { type
149 func (tv *timeval) set_usec(x int32) {
154 it_interval timeval
155 it_value timeval

Completed in 854 milliseconds

1 2 3 4