Home
last modified time | relevance | path

Searched refs:whenUs (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/foundation/
DALooper.cpp171 int64_t whenUs; in post() local
174 whenUs = (delayUs > INT64_MAX - nowUs ? INT64_MAX : nowUs + delayUs); in post()
177 whenUs = GetNowUs(); in post()
181 while (it != mEventQueue.end() && (*it).mWhenUs <= whenUs) { in post()
186 event.mWhenUs = whenUs; in post()
208 int64_t whenUs = (*mEventQueue.begin()).mWhenUs; in loop() local
211 if (whenUs > nowUs) { in loop()
212 int64_t delayUs = whenUs - nowUs; in loop()
/frameworks/av/media/libstagefright/
DThrottledSource.cpp56 int64_t whenUs = mStartTimeUs + durationUs; in readAt() local
58 if (whenUs > nowUs) { in readAt()
59 usleep(whenUs - nowUs); in readAt()
/frameworks/av/media/libstagefright/rtsp/
DUDPPusher.cpp104 int64_t whenUs = mFirstTimeUs + timeMs * 1000ll; in onPush() local
106 (new AMessage(kWhatPush, this))->post(whenUs - nowUs); in onPush()