Searched refs:tv_sec (Results 51 - 75 of 119) sorted by relevance

12345

/haiku/src/bin/network/ping/
H A Dping.c510 itv.it_value.tv_sec = (time_t)alarmtimeout;
919 intvl.tv_sec = 0;
922 intvl.tv_sec = interval / 1000;
946 if (timeout.tv_sec < 0)
1010 intvl.tv_sec = 2 * tmax / 1000;
1011 if (intvl.tv_sec == 0)
1012 intvl.tv_sec = 1;
1014 intvl.tv_sec = waittime / 1000;
1067 tv32.tv32_sec = (uint32_t)htonl(now.tv_sec);
1070 icp.icmp_otime = htonl((now.tv_sec
[all...]
H A Dping6.c325 intvl.tv_sec = interval / 1000;
460 intvl.tv_sec = (time_t)t;
462 (long)((t - intvl.tv_sec) * 1000000000);
463 if (intvl.tv_sec < 0)
466 if (intvl.tv_sec == 0 && intvl.tv_nsec < 1000) {
582 itv.it_value.tv_sec = (time_t)alarmtimeout;
1174 intvl.tv_sec = 0;
1197 if (timeout.tv_sec < 0)
1263 intvl.tv_sec = 2 * tmax / 1000;
1264 if (intvl.tv_sec
[all...]
/haiku/src/kits/support/
H A DUuid.cpp28 uint32 seed = (uint32)time.tv_sec ^ (uint32)time.tv_nsec;
/haiku/src/system/libroot/posix/stdlib/
H A Dmktemp.c122 seed = (getpid() << 16) ^ getuid() ^ tv.tv_sec ^ tv.tv_usec;
/haiku/src/tests/system/network/
H A Dselect_test_big.c62 tv.tv_sec = 5;
/haiku/headers/posix/
H A Dtime.h47 time_t tv_sec; /* seconds */ member in struct:timespec
/haiku/src/system/libroot/posix/pthread/
H A Dpthread_cond.cpp139 bigtime_t timeoutMicros = ((bigtime_t)abstime->tv_sec) * 1000000
H A Dpthread_mutex.cpp126 timeout = abstime->tv_sec * 1000000LL + abstime->tv_nsec / 1000LL;
H A Dpthread_rwlock.cpp348 bigtime_t timeout = abstime->tv_sec * 1000000LL
409 bigtime_t timeout = abstime->tv_sec * 1000000LL
/haiku/src/build/libroot/
H A Dfs.cpp85 timeBuffer[0].tv_sec = times[0].tv_sec;
87 timeBuffer[1].tv_sec = times[1].tv_sec;
99 timeBuffer[0].tv_sec = st.st_atimespec.tv_sec;
104 timeBuffer[1].tv_sec = st.st_mtimespec.tv_sec;
1281 HAIKU_HOST_STAT_ATIM(stat).tv_sec
1282 = HAIKU_HOST_STAT_MTIM(stat).tv_sec
[all...]
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dtempname.c119 value = ((uint64_t) tv.tv_usec << 16) ^ tv.tv_sec; \
271 random_time_bits = ((uint64_t) tv.tv_usec << 16) ^ tv.tv_sec;
/haiku/src/system/libroot/posix/
H A Dsemaphore.cpp173 timeoutMicros = ((bigtime_t)timeout->tv_sec) * 1000000
225 timeoutMicros = ((bigtime_t)timeout->tv_sec) * 1000000
/haiku/src/kits/network/libnetapi/
H A DAbstractSocket.cpp121 tv.tv_sec = timeout / 1000000LL;
142 return tv.tv_sec * 1000000LL + tv.tv_usec;
/haiku/src/libs/mapm/
H A Dmapm_rnd.c327 *sec = time_now.tv_sec;
/haiku/src/system/libroot/posix/time/
H A Dtimer_support.cpp36 spec.it_value.tv_sec = 0;
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DNode.cpp24 return (uint64)time.tv_sec * 1000000000 + (uint64)time.tv_usec * 1000;
/haiku/src/add-ons/kernel/file_systems/udf/
H A DUtils.cpp145 timespec.tv_sec = result;
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dif_ath_alq.c181 ap->tstamp_sec = htobe32((uint32_t) tv.tv_sec);
/haiku/src/preferences/time/
H A Dntp.cpp171 timeout.tv_sec = 3;
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DInode.cpp54 stamp.tv_sec = fNode->di_mtime.t_sec;
62 stamp.tv_sec = fNode->di_atime.t_sec;
70 stamp.tv_sec = fNode->di_ctime.t_sec;
78 stamp.tv_sec = fNode->di_crtime.t_sec;
/haiku/src/bin/network/traceroute/
H A Dtraceroute.c1261 wait.tv_sec = tp->tv_sec + waittime;
1265 if (wait.tv_sec < 0) {
1266 wait.tv_sec = 0;
1364 dt = (double)(t2p->tv_sec - t1p->tv_sec) * 1000.0 +
1871 --out->tv_sec;
1874 out->tv_sec -= in->tv_sec;
/haiku/src/add-ons/kernel/file_systems/iso9660/
H A Dkernel_interface.cpp501 st->st_ctim.tv_sec = st->st_mtim.tv_sec = st->st_atim.tv_sec = time;
/haiku/src/add-ons/kernel/file_systems/ntfs/
H A Dlowntfs.c329 stbuf->st_atime = ts.tv_sec;
332 stbuf->st_ctime = ts.tv_sec;
335 stbuf->st_mtime = ts.tv_sec;
344 stbuf->st_atime = ts.tv_sec;
346 stbuf->st_ctime = ts.tv_sec;
348 stbuf->st_mtime = ts.tv_sec;
/haiku/src/bin/fwcontrol/
H A Dfwdv.c424 rtime = end.tv_sec - start.tv_sec
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_fs.cpp251 tv[0].tv_sec, // access time
252 tv[1].tv_sec // modification time

Completed in 181 milliseconds

12345