HomeSort by relevance Sort by last modified time
    Searched refs:timeval (Results 126 - 150 of 1100) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libevent/
event-internal.h 111 int (*dispatch)(struct event_base *, struct timeval *);
166 /* 'magic' timeval used to indicate the duration of events in this
168 struct timeval duration;
290 /** Stored timeval: used to avoid calling gettimeofday/clock_gettime
292 struct timeval tv_cache;
298 struct timeval tv_clock_diff;
325 struct timeval max_dispatch_time;
363 struct timeval max_dispatch_interval;
405 const struct timeval *tv, int tv_is_absolute);
http-internal.h 83 struct timeval timeout; /* timeout for events */
86 struct timeval initial_retry_timeout; /* Timeout for low long to wait
156 struct timeval timeout;
  /external/python/cpython2/Lib/email/
utils.py 130 def formatdate(timeval=None, localtime=False, usegmt=False):
135 Optional timeval if given is a floating point time value as accepted by
138 Optional localtime is a flag that when True, interprets timeval, and
148 if timeval is None:
149 timeval = time.time()
151 now = time.localtime(timeval)
167 now = time.gmtime(timeval)
192 timeval = int(time.time()*100)
200 msgid = '<%d.%d.%d%s@%s>' % (timeval, pid, randint, idstring, idhost)
  /external/python/cpython3/Lib/test/test_email/
test_utils.py 148 timeval = time.mktime((2011, 12, 1, 18, 0, 0, 4, 335, 0))
149 string = utils.formatdate(timeval, localtime=False, usegmt=False)
151 string = utils.formatdate(timeval, localtime=False, usegmt=True)
156 timeval = time.mktime((2011, 1, 1, 18, 0, 0, 6, 1, 0))
157 string = utils.formatdate(timeval, localtime=True)
160 timeval = time.mktime((2011, 12, 1, 18, 0, 0, 4, 335, 0))
161 string = utils.formatdate(timeval, localtime=True)
  /external/curl/tests/libtest/
first.c 46 struct timeval *tv)
68 struct timeval t;
80 struct timeval tv_test_start; /* for test timing */
  /external/e2fsprogs/resize/
resize2fs.h 94 struct timeval time_start;
95 struct timeval user_start;
96 struct timeval system_start;
resource_track.c 53 static float timeval_subtract(struct timeval *tv1,
54 struct timeval *tv2)
69 struct timeval time_end;
  /external/libevent/test/
bench_cascade.c 80 static struct timeval *
85 static struct timeval ts, te, tv_timeout;
146 struct timeval *tv;
  /external/libxcam/xcore/base/
xcam_defs.h 98 #define XCAM_TIMEVAL_2_USEC(timeval) ((timeval).tv_sec*1000000LL + (timeval).tv_usec)
  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
testlib.c 122 int timeval_subtract(struct timeval *result, struct timeval *x, struct timeval *y)
  /external/openssh/
misc.h 62 void ms_subtract_diff(struct timeval *, int *);
63 void ms_to_timeval(struct timeval *, int);
125 struct timeval bwstart, bwend;
  /external/python/cpython3/Include/
pytime.h 60 /* Convert a number of seconds, int or float, to a timeval structure.
121 /* Create a timestamp from a timeval structure.
123 PyAPI_FUNC(int) _PyTime_FromTimeval(_PyTime_t *tp, struct timeval *tv);
125 /* Convert a timestamp to a timeval structure (microsecond resolution).
130 struct timeval *tv,
135 struct timeval *tv,
140 except that secs is always a time_t type, whereas the timeval structure
  /bionic/libc/include/
utmp.h 86 struct timeval ut_tv;
  /device/google/bonito/sdm710/kernel-headers/media/
msmb_generic_buf_mgr.h 36 struct timeval timestamp;
msmb_pproc.h 68 struct timeval timestamp;
78 struct timeval in_time, out_time;
135 struct timeval timestamp;
149 struct timeval in_time, out_time;
  /device/google/bonito/sdm710/original-kernel-headers/media/
msmb_generic_buf_mgr.h 22 struct timeval timestamp;
msmb_pproc.h 62 struct timeval timestamp;
72 struct timeval in_time, out_time;
148 struct timeval timestamp;
162 struct timeval in_time, out_time;
  /device/google/crosshatch/sdm845/kernel-headers/media/
msmb_generic_buf_mgr.h 36 struct timeval timestamp;
msmb_pproc.h 68 struct timeval timestamp;
78 struct timeval in_time, out_time;
135 struct timeval timestamp;
149 struct timeval in_time, out_time;
  /device/google/crosshatch/sdm845/original-kernel-headers/media/
msmb_generic_buf_mgr.h 22 struct timeval timestamp;
msmb_pproc.h 62 struct timeval timestamp;
72 struct timeval in_time, out_time;
148 struct timeval timestamp;
162 struct timeval in_time, out_time;
  /device/google/cuttlefish_common/common/libs/fs/
shared_select.h 77 SharedFDSet* error_set, struct timeval* timeout);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
timing.h 44 static struct timeval aftertp, beforetp;
  /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/curl/docs/examples/
multi-single.c 42 struct timeval wait = { 0, (x) * 1000 }; \

Completed in 1161 milliseconds

1 2 3 4 56 7 8 91011>>