Searched refs:mWriteTs (Results 1 – 2 of 2) sorted by relevance
130 time_t sec = nowTs.tv_sec - mWriteTs.tv_sec; in write()131 long nsec = nowTs.tv_nsec - mWriteTs.tv_nsec; in write()134 mWriteTs.tv_sec, mWriteTs.tv_nsec, nowTs.tv_sec, nowTs.tv_nsec); in write()153 mWriteTs = nowTs; in write()154 if ((mWriteTs.tv_nsec += ns) >= 1000000000) { in write()155 mWriteTs.tv_nsec -= 1000000000; in write()156 ++mWriteTs.tv_sec; in write()
92 struct timespec mWriteTs; // time that the previous write() completed variable