HomeSort by relevance Sort by last modified time
    Searched defs:timespec (Results 1 - 18 of 18) sorted by null

  /bionic/libc/include/bits/
timespec.h 32 * @file bits/timespec.h
33 * @brief The `timespec` struct.
40 * This file is used to include timespec definition without introducing the whole
46 struct timespec { struct
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
_timespec.h 44 struct timespec { struct
  /external/grpc-grpc/src/csharp/Grpc.Core/Profiling/
ProfilerEntry.cs 35 public ProfilerEntry(Timespec timespec, Type type, string tag)
37 this.timespec = timespec;
42 public Timespec timespec; field in struct:Grpc.Core.Profiling.ProfilerEntry
52 timespec.TimevalSeconds, timespec.TimevalNanos.ToString("D9"),
  /external/libusb/libusb/os/
threads_windows.h 36 // We *were* getting timespec from pthread.h:
40 struct timespec { struct
  /external/openssh/openbsd-compat/
bsd-misc.h 73 struct timespec { struct
78 int nanosleep(const struct timespec *, struct timespec *);
  /bionic/libc/kernel/uapi/linux/
time.h 24 struct timespec { struct
41 struct timespec it_interval;
42 struct timespec it_value;
coda.h 41 struct timespec { struct
61 struct timespec { struct
144 struct timespec va_atime;
145 struct timespec va_mtime;
146 struct timespec va_ctime;
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
time.h 63 struct timespec { struct
154 struct timespec it_interval;
155 struct timespec it_value;
  /external/kernel-headers/original/uapi/linux/
time.h 10 struct timespec { struct
36 struct timespec it_interval; /* timer period */
37 struct timespec it_value; /* timer expiration */
coda.h 89 struct timespec { struct
114 struct timespec { struct
223 struct timespec va_atime; /* time of last access */
224 struct timespec va_mtime; /* time of last modification */
225 struct timespec va_ctime; /* time file changed */
  /external/mesa3d/include/c11/
threads_win32.h 87 struct timespec { struct
163 static DWORD impl_timespec2msec(const struct timespec *ts)
223 static int impl_cond_do_wait(cnd_t *cond, mtx_t *mtx, const struct timespec *ts)
395 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *abs_time)
455 mtx_timedlock(mtx_t *mtx, const struct timespec *ts)
596 thrd_sleep(const struct timespec *time_point, struct timespec *remaining)
653 timespec_get(struct timespec *ts, int base)
  /external/bcc/src/python/bcc/
__init__.py 181 class timespec(ct.Structure): class in class:BPF
186 _clock_gettime.argtypes = [ct.c_int, ct.POINTER(timespec)]
194 t = cls.timespec()
    [all...]
  /art/runtime/
thread.cc 337 timespec timespec; local
341 timespec.tv_nsec = (time % 1000) * 1000000;
342 timespec.tv_sec = time / 1000;
350 &timespec,
355 timespec.tv_sec = time / 1000000000;
356 timespec.tv_nsec = time % 1000000000;
360 &timespec,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
infinite_recursion.py 2452 class timespec(Structure): class in inherits:Structure
    [all...]
  /external/python/cpython2/Lib/lib2to3/tests/data/
infinite_recursion.py 2452 class timespec(Structure): class in inherits:Structure
    [all...]
  /external/python/cpython3/Lib/lib2to3/tests/data/
infinite_recursion.py 2452 class timespec(Structure): class in inherits:Structure
    [all...]
  /external/python/cpython3/Modules/
_datetimemodule.c 4085 char *timespec = NULL; local
5315 char *timespec = NULL; local
    [all...]
  /external/u-boot/fs/ubifs/
ubifs.h 72 #define CURRENT_TIME_SEC ((struct timespec) { get_seconds(), 0 })
74 struct timespec { struct
79 static struct timespec current_fs_time(struct super_block *sb)
81 struct timespec now;
198 struct timespec i_atime;
199 struct timespec i_mtime;
200 struct timespec i_ctime;
    [all...]

Completed in 1149 milliseconds