HomeSort by relevance Sort by last modified time
    Searched refs:mWriteTs (Results 1 - 2 of 2) sorted by null

  /frameworks/av/media/libnbaio/
MonoPipe.cpp 40 // mWriteTs
130 time_t sec = nowTs.tv_sec - mWriteTs.tv_sec;
131 long nsec = nowTs.tv_nsec - mWriteTs.tv_nsec;
134 mWriteTs.tv_sec, mWriteTs.tv_nsec, nowTs.tv_sec, nowTs.tv_nsec);
153 mWriteTs = nowTs;
154 if ((mWriteTs.tv_nsec += ns) >= 1000000000) {
155 mWriteTs.tv_nsec -= 1000000000;
156 ++mWriteTs.tv_sec;
  /frameworks/av/media/libnbaio/include_mono/media/nbaio/
MonoPipe.h 91 bool mWriteTsValid; // whether mWriteTs is valid
92 struct timespec mWriteTs; // time that the previous write() completed

Completed in 52 milliseconds