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 42 // mWriteTs
168 time_t sec = nowTs.tv_sec - mWriteTs.tv_sec;
169 long nsec = nowTs.tv_nsec - mWriteTs.tv_nsec;
172 mWriteTs.tv_sec, mWriteTs.tv_nsec, nowTs.tv_sec, nowTs.tv_nsec);
191 mWriteTs = nowTs;
192 if ((mWriteTs.tv_nsec += ns) >= 1000000000) {
193 mWriteTs.tv_nsec -= 1000000000;
194 ++mWriteTs.tv_sec;
  /frameworks/av/include/media/nbaio/
MonoPipe.h 127 bool mWriteTsValid; // whether mWriteTs is valid
128 struct timespec mWriteTs; // time that the previous write() completed

Completed in 86 milliseconds