Home | History | Annotate | Download | only in system

Lines Matching defs:tv_sec

26     public final long tv_sec; /*time_t*/
31 public StructTimespec(long tv_sec, long tv_nsec) {
32 this.tv_sec = tv_sec;
42 if (tv_sec > other.tv_sec) {
45 if (tv_sec < other.tv_sec) {
64 if (tv_sec != that.tv_sec) return false;
70 int result = (int) (tv_sec ^ (tv_sec >>> 32));