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

1 2 3 4 5 6

  /libnativehelper/include/nativehelper/
AsynchronousCloseMonitor.h 57 pthread_t mThread;
  /system/vold/
MoveTask.h 38 std::thread mThread;
TrimTask.h 43 std::thread mThread;
  /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;
  /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;
  /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/tests/SurfaceComposition/src/android/surfacecomposition/
MemoryAccessTask.java 29 private WorkThread mThread;
51 if (mThread != null) {
55 mThread = new WorkThread();
56 mThread.start();
60 if (mThread != null) {
65 mThread.join();
  /frameworks/av/media/libstagefright/tests/
DummyRecorder.h 35 pthread_t mThread;
  /frameworks/base/core/java/com/android/internal/view/
WindowManagerPolicyThread.java 26 static Thread mThread;
30 mThread = thread;
35 return mThread;
  /hardware/qcom/gps/msm8909/utils/
MsgTask.h 43 LocThread* mThread;
LocThread.h 63 LocThreadDelegate* mThread;
65 inline LocThread() : mThread(NULL) {}
89 inline bool isRunning() { return NULL != mThread; }
  /hardware/qcom/gps/msm8996/utils/
MsgTask.h 43 LocThread* mThread;
LocThread.h 63 LocThreadDelegate* mThread;
65 inline LocThread() : mThread(NULL) {}
89 inline bool isRunning() { return NULL != mThread; }
  /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;
  /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...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
TileServiceManagerTests.java 31 private HandlerThread mThread;
38 mThread = new HandlerThread("TestThread");
39 mThread.start();
40 mHandler = new Handler(mThread.getLooper());
54 mThread.quit();
  /frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/
BatteryWaster.java 43 SpinThread mThread;
123 if (mThread == null) {
124 mThread = new SpinThread();
125 mThread.start();
136 if (mThread != null) {
137 mThread.quit();
138 mThread = null;
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
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();
HardwareCanvasSurfaceViewActivity.java 41 private HardwareCanvasSurfaceViewActivity.RenderingThread mThread;
91 mThread = new RenderingThread(holder.getSurface());
92 mThread.start();
97 mThread.setSize(width, height);
102 if (mThread != null) mThread.stopRendering();
  /frameworks/support/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(),
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
EditTextTypeActivity.java 35 Thread mThread;
74 mThread = new Thread(new Runnable() {
100 mThread.start();
  /frameworks/av/include/media/stagefright/
AMRWriter.h 54 pthread_t mThread;
  /system/core/include/sysutils/
SocketListener.h 31 pthread_t mThread;

Completed in 537 milliseconds

1 2 3 4 5 6