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

  /frameworks/base/media/libstagefright/foundation/
ALooper.cpp 163 int64_t whenUs;
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;
201 if (whenUs > nowUs) {
202 int64_t delayUs = whenUs - nowUs;
  /frameworks/base/media/libstagefright/
ThrottledSource.cpp 66 int64_t whenUs = mStartTimeUs + durationUs;
68 if (whenUs > nowUs) {
69 usleep(whenUs - nowUs);
  /frameworks/base/media/libstagefright/rtsp/
UDPPusher.cpp 104 int64_t whenUs = mFirstTimeUs + timeMs * 1000ll;
106 (new AMessage(kWhatPush, id()))->post(whenUs - nowUs);

Completed in 171 milliseconds