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

/frameworks/base/media/libstagefright/foundation/
H A DALooper.cpp163 int64_t whenUs; local
165 whenUs = GetNowUs() + delayUs;
167 whenUs = GetNowUs();
171 while (it != mEventQueue.end() && (*it).mWhenUs <= whenUs) {
176 event.mWhenUs = whenUs;
198 int64_t whenUs = (*mEventQueue.begin()).mWhenUs; local
201 if (whenUs > nowUs) {
202 int64_t delayUs = whenUs - nowUs;
/frameworks/base/media/libstagefright/
H A DThrottledSource.cpp66 int64_t whenUs = mStartTimeUs + durationUs; local
68 if (whenUs > nowUs) {
69 usleep(whenUs - nowUs);
/frameworks/base/media/libstagefright/rtsp/
H A DUDPPusher.cpp104 int64_t whenUs = mFirstTimeUs + timeMs * 1000ll; local
106 (new AMessage(kWhatPush, id()))->post(whenUs - nowUs);

Completed in 94 milliseconds