HomeSort by relevance Sort by last modified time
    Searched refs:ALooper (Results 51 - 75 of 265) sorted by null

1 23 4 5 6 7 8 91011

  /frameworks/av/media/libstagefright/foundation/
ALooper.cpp 18 #define LOG_TAG "ALooper"
26 #include "ALooper.h"
36 struct ALooper::LooperThread : public Thread {
37 LooperThread(ALooper *looper, bool canCallJava)
61 ALooper *mLooper;
68 int64_t ALooper::GetNowUs() {
72 ALooper::ALooper()
79 ALooper::~ALooper() {
    [all...]
ALooperRoster.cpp 36 ALooper::handler_id ALooperRoster::registerHandler(
37 const sp<ALooper> looper, const sp<AHandler> &handler) {
48 ALooper::handler_id handlerID = mNextHandlerID++;
56 void ALooperRoster::unregisterHandler(ALooper::handler_id handlerID) {
78 Vector<sp<ALooper> > activeLoopers;
86 sp<ALooper> looper = info.mLooper.promote();
93 // and having ~ALooper call this method again recursively
139 sp<ALooper> looper = info.mLooper.promote();
Android.mk 11 ALooper.cpp \
  /frameworks/av/media/libmediaplayerservice/
RemoteDisplay.h 29 struct ALooper;
48 sp<ALooper> mNetLooper;
49 sp<ALooper> mLooper;
RemoteDisplay.cpp 32 : mLooper(new ALooper),
  /frameworks/av/include/media/stagefright/foundation/
ALooper.h 35 struct ALooper : public RefBase {
39 ALooper();
62 virtual ~ALooper();
106 DISALLOW_EVIL_CONSTRUCTORS(ALooper);
AMessage.h 22 #include <media/stagefright/foundation/ALooper.h>
34 AReplyToken(const sp<ALooper> &looper)
41 friend struct ALooper;
42 wp<ALooper> mLooper;
46 sp<ALooper> getLooper() const {
187 friend struct ALooper; // deliver()
192 ALooper::handler_id mTarget;
195 wp<ALooper> mLooper;
  /frameworks/av/media/libstagefright/
ThrottledSource.cpp 20 #include <media/stagefright/foundation/ALooper.h>
45 int64_t nowUs = ALooper::GetNowUs();
MediaClock.cpp 24 #include <media/stagefright/foundation/ALooper.h>
64 int64_t nowUs = ALooper::GetNowUs();
100 int64_t nowUs = ALooper::GetNowUs();
157 int64_t nowUs = ALooper::GetNowUs();
  /frameworks/av/include/media/stagefright/
MediaCodecSource.h 29 struct ALooper;
44 const sp<ALooper> &looper,
88 const sp<ALooper> &looper,
106 sp<ALooper> mLooper;
107 sp<ALooper> mCodecLooper;
SimpleDecodingSource.h 31 struct ALooper;
73 const sp<MediaCodec> &codec, const sp<IMediaSource> &source, const sp<ALooper> &looper,
78 sp<ALooper> mLooper;
MPEG2TSWriter.h 23 #include <media/stagefright/foundation/ALooper.h>
61 sp<ALooper> mLooper;
  /frameworks/av/media/libstagefright/wifi-display/source/
RepeaterSource.cpp 8 #include <media/stagefright/foundation/ALooper.h>
63 mLooper = new ALooper;
126 mStartTimeUs = ALooper::GetNowUs();
131 int64_t nowUs = ALooper::GetNowUs();
149 int64_t nowUs = ALooper::GetNowUs();
195 mLastBufferUpdateUs = ALooper::GetNowUs();
214 mLastBufferUpdateUs = ALooper::GetNowUs();
RepeaterSource.h 50 sp<ALooper> mLooper;
Converter.h 47 const sp<ALooper> &codecLooper,
96 sp<ALooper> mCodecLooper;
  /frameworks/av/media/libmediaplayerservice/nuplayer/
StreamingSource.h 62 sp<ALooper> mLooper;
NuPlayerDriver.h 23 struct ALooper;
116 sp<ALooper> mLooper;
RTSPSource.h 27 struct ALooper;
112 sp<ALooper> mLooper;
  /frameworks/av/media/libstagefright/include/
SDPLoader.h 62 sp<ALooper> mNetLooper;
  /frameworks/av/cmds/stagefright/
SimplePlayer.h 24 struct ALooper;
90 sp<ALooper> mCodecLooper;
muxer.cpp 29 #include <media/stagefright/foundation/ALooper.h>
155 int64_t muxerStartTimeUs = ALooper::GetNowUs();
222 int64_t elapsedTimeUs = ALooper::GetNowUs() - muxerStartTimeUs;
325 sp<ALooper> looper = new ALooper;
  /frameworks/native/include/gui/
SensorEventQueue.h 32 struct ALooper;
37 ALooper* looper;
  /frameworks/av/media/libstagefright/http/
MediaHTTP.cpp 25 #include <media/stagefright/foundation/ALooper.h>
98 int64_t startTimeUs = ALooper::GetNowUs();
122 int64_t delayUs = ALooper::GetNowUs() - startTimeUs;
  /frameworks/av/media/libstagefright/rtsp/
ARTPAssembler.cpp 21 #include <media/stagefright/foundation/ALooper.h>
39 if (ALooper::GetNowUs() - mFirstFailureTimeUs > 10000ll) {
47 mFirstFailureTimeUs = ALooper::GetNowUs();
rtp_test.cpp 25 #include <media/stagefright/foundation/ALooper.h>
66 sp<ALooper> looper = new ALooper;

Completed in 3838 milliseconds

1 23 4 5 6 7 8 91011