HomeSort by relevance Sort by last modified time
    Searched refs:mThread (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /frameworks/base/core/java/com/android/server/
ResettableTimeout.java 64 if (mThread == null) {
67 mThread = new T();
68 mThread.start();
74 mThread.interrupt();
87 if (mThread != null) {
88 mThread.interrupt();
89 mThread = null;
110 mThread = null;
129 private Thread mThread;
  /frameworks/base/core/java/com/android/internal/view/
WindowManagerPolicyThread.java 26 static Thread mThread;
30 mThread = thread;
35 return mThread;
  /external/replicaisland/src/com/replica/replicaisland/
RenderingWatchDog.java 33 private Thread mThread;
51 mThread = new Thread(this);
52 mThread.start();
58 if (mThread == null) {
64 mThread.join();
68 mThread = null;
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
WatchDog.java 30 private Thread mThread;
50 mThread = new Thread(this);
51 mThread.start();
57 if (mThread == null) {
63 mThread.join();
67 mThread = null;
  /cts/libs/deviceutil/src/android/cts/util/
WatchDog.java 31 private Thread mThread;
51 mThread = new Thread(this);
52 mThread.start();
58 if (mThread == null) {
64 mThread.join();
68 mThread = null;
  /hardware/intel/img/hwcomposer/merrifield/common/observers/
VsyncEventObserver.cpp 56 mThread = new VsyncEventPollThread(this);
57 if (!mThread.get()) {
61 mThread->run("VsyncEventObserver", PRIORITY_URGENT_DISPLAY);
78 if (mThread.get()) {
79 mThread->requestExitAndWait();
80 mThread = NULL;
SoftVsyncObserver.cpp 58 mThread = new VsyncEventPollThread(this);
59 if (!mThread.get()) {
62 mThread->run("SoftVsyncObserver", PRIORITY_URGENT_DISPLAY);
77 if (mThread.get()) {
78 mThread->requestExitAndWait();
79 mThread = NULL;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentRetainInstance.java 108 final Thread mThread = new Thread() {
164 mThread.start();
182 synchronized (mThread) {
184 mThread.notify();
195 synchronized (mThread) {
198 mThread.notify();
213 synchronized (mThread) {
216 mThread.notify();
226 synchronized (mThread) {
228 mThread.notify()
    [all...]
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentRetainInstanceSupport.java 109 final Thread mThread = new Thread() {
165 mThread.start();
183 synchronized (mThread) {
185 mThread.notify();
196 synchronized (mThread) {
199 mThread.notify();
214 synchronized (mThread) {
217 mThread.notify();
227 synchronized (mThread) {
229 mThread.notify()
    [all...]
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
PackageIconLoaderTest.java 36 private ConsumerThread mThread;
40 mThread = new ConsumerThread();
41 mThread.start();
48 mThread.exit();
56 return new PackageIconLoader(mContext, mContext.getPackageName(), mThread.getHandler(),
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/observers/
SoftVsyncObserver.cpp 54 mThread = new VsyncEventPollThread(this);
55 if (!mThread.get()) {
58 mThread->run("SoftVsyncObserver", PRIORITY_URGENT_DISPLAY);
73 if (mThread.get()) {
74 mThread->requestExitAndWait();
75 mThread = NULL;
VsyncEventObserver.cpp 56 mThread = new VsyncEventPollThread(this);
57 if (!mThread.get()) {
61 mThread->run("VsyncEventObserver", PRIORITY_URGENT_DISPLAY);
78 if (mThread.get()) {
79 mThread->requestExitAndWait();
80 mThread = NULL;
  /hardware/intel/img/hwcomposer/merrifield/common/base/
SimpleThread.h 34 sp<THREADNAME> mThread;
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
SimpleThread.h 34 sp<THREADNAME> mThread;
  /libcore/luni/src/main/native/
AsynchronousCloseMonitor.h 57 pthread_t mThread;
  /system/vold/
MoveTask.h 38 std::thread mThread;
TrimTask.h 43 std::thread mThread;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
TestCase.java 58 private Thread mThread;
82 mThread = new Thread(new Runnable() {
107 mThread.start();
114 if (mThread != null) {
115 mThread.interrupt();
116 mThread = null;
  /frameworks/base/core/java/android/os/
Looper.java 72 final Thread mThread;
188 mThread = Thread.currentThread();
195 return Thread.currentThread() == mThread;
253 return mThread;
278 return "Looper (" + mThread.getName() + ", tid " + mThread.getId()
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
HardwareCanvasSurfaceViewActivity.java 34 private HardwareCanvasSurfaceViewActivity.RenderingThread mThread;
54 mThread = new RenderingThread(holder.getSurface());
55 mThread.start();
60 mThread.setSize(width, height);
65 if (mThread != null) mThread.stopRendering();
CanvasTextureViewActivity.java 33 private CanvasTextureViewActivity.RenderingThread mThread;
51 mThread = new RenderingThread(mTextureView);
52 mThread.start();
62 if (mThread != null) mThread.stopRendering();
HardwareCanvasTextureViewActivity.java 34 private HardwareCanvasTextureViewActivity.RenderingThread mThread;
52 mThread = new RenderingThread(mTextureView);
53 mThread.start();
63 if (mThread != null) mThread.stopRendering();
  /frameworks/av/media/libstagefright/foundation/
ALooper.cpp 102 if (mThread != NULL || mRunningLocally) {
117 if (mThread != NULL || mRunningLocally) {
121 mThread = new LooperThread(this, canCallJava);
123 status_t err = mThread->run(
126 mThread.clear();
139 thread = mThread;
141 mThread.clear();
195 if (mThread == NULL && !mRunningLocally) {
  /frameworks/av/media/libstagefright/tests/
DummyRecorder.h 35 pthread_t mThread;
  /external/apache-http/android/src/android/net/http/
IdleCache.java 47 private IdleReaper mThread = null;
83 if (mThread == null) {
84 mThread = new IdleReaper();
85 mThread.start();
162 mThread = null;

Completed in 766 milliseconds

1 2 3 4 5