Home
last modified time | relevance | path

Searched refs:ts (Results 1 – 7 of 7) sorted by relevance

/coreutils/src/
Dstatx.h25 struct timespec ts; in statx_timestamp_to_timespec() local
27 ts.tv_sec = tsx.tv_sec; in statx_timestamp_to_timespec()
28 ts.tv_nsec = tsx.tv_nsec; in statx_timestamp_to_timespec()
29 return ts; in statx_timestamp_to_timespec()
Dtimeout.c119 struct timespec ts = dtotimespec (duration); in settimeout() local
120 struct itimerspec its = {.it_interval = {0}, .it_value = ts}; in settimeout()
141 struct timespec ts = dtotimespec (duration); in settimeout()
142 tv.tv_sec = ts.tv_sec; in settimeout()
143 tv.tv_usec = (ts.tv_nsec + 999) / 1000; in settimeout()
Dstat.c1038 neg_to_zero (struct timespec ts) in neg_to_zero() argument
1040 if (0 <= ts.tv_nsec) in neg_to_zero()
1041 return ts; in neg_to_zero()
1423 struct timespec ts = get_stat_birthtime (st); in get_birthtime() local
1426 if (ts.tv_nsec < 0) in get_birthtime()
1441 ts.tv_sec = val[0]; in get_birthtime()
1442 ts.tv_nsec = val[1]; in get_birthtime()
1449 return ts; in get_birthtime()
/coreutils/tests/ls/
Dabmon-align.sh24 touch -d"$mid_month +$mon month" $mon.ts || framework_failure_
50 LC_ALL=$LOC TIME_STYLE=+%b ls -lgG *.ts
/coreutils/tests/cp/
Dreflink-perm.sh25 ts='2009-08-28 19:00'
26 touch -d "$ts" file || framework_failure_
/coreutils/tests/du/
Dbasic.sh71 ts=$(stat --format=%b d/sub)
74 tot=$(expr $t1 + $t2 + $ts + $td)
76 s2=$(expr $ts + $t2)
/coreutils/tests/date/
Ddate.pl34 my $ts = '08:17:49'; # next second
116 ['next-s', "-d '$d1 next second' '+%Y-%m-%d %T'", {OUT=>"$d0 $ts"}],