Home
last modified time | relevance | path

Searched refs:mThread (Results 1 – 6 of 6) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
DRenderingWatchDog.java33 private Thread mThread; field in RenderingWatchDog
51 mThread = new Thread(this); in start()
52 mThread.start(); in start()
58 if (mThread == null) { in stop()
64 mThread.join(); in stop()
68 mThread = null; in stop()
/external/apache-http/android/src/android/net/http/
DIdleCache.java47 private IdleReaper mThread = null; field in IdleCache
83 if (mThread == null) { in cacheConnection()
84 mThread = new IdleReaper(); in cacheConnection()
85 mThread.start(); in cacheConnection()
162 mThread = null; in run()
/external/drrickorang/LoopbackApp/app/src/main/cpp/lb2/
Dsound_system_echo.cpp49 mThread.reset(new std::thread(std::bind(&SoundSystemEcho::threadLoop, this))); in startThread()
54 mThread->join(); in stopThread()
55 mThread.reset(); in stopThread()
Dsound_system_echo.h56 std::unique_ptr<std::thread> mThread; variable
/external/v4l2_codec2/
DC2VDAComponent.cpp402 mThread("C2VDAComponentThread"), in C2VDAComponent()
419 if (!mThread.Start()) { in C2VDAComponent()
423 mTaskRunner = mThread.task_runner(); in C2VDAComponent()
428 if (mThread.IsRunning()) { in ~C2VDAComponent()
431 mThread.Stop(); in ~C2VDAComponent()
/external/v4l2_codec2/include/
DC2VDAComponent.h306 ::base::Thread mThread;