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

1 2 3

  /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;
  /libcore/luni/src/main/native/
AsynchronousSocketCloseMonitor.h 52 pthread_t mThread;
AsynchronousSocketCloseMonitor.cpp 64 pthread_kill(it->mThread, BLOCKED_THREAD_SIGNAL);
73 mThread = pthread_self();
  /system/core/nexus/
WifiScanner.h 25 pthread_t mThread;
WifiStatusPoller.h 25 pthread_t mThread;
WifiScanner.cpp 45 if (pthread_create(&mThread, NULL, WifiScanner::threadStart, this))
66 if (pthread_join(mThread, &ret)) {
WifiStatusPoller.cpp 43 if (pthread_create(&mThread, NULL, WifiStatusPoller::threadStart, this))
58 if (pthread_join(mThread, &ret)) {
  /frameworks/base/media/libstagefright/foundation/
ALooper.cpp 86 if (mThread != NULL || mRunningLocally) {
101 if (mThread != NULL || mRunningLocally) {
105 mThread = new LooperThread(this, canCallJava);
107 status_t err = mThread->run(
110 mThread.clear();
123 thread = mThread;
125 mThread.clear();
177 if (mThread == NULL && !mRunningLocally) {
  /system/core/include/sysutils/
SocketListener.h 30 pthread_t mThread;
  /frameworks/base/core/java/android/net/http/
IdleCache.java 50 private IdleReaper mThread = null;
86 if (mThread == null) {
87 mThread = new IdleReaper();
88 mThread.start();
165 mThread = null;
  /frameworks/base/media/java/android/media/
AsyncPlayer.java 121 mThread = null;
131 private Thread mThread;
199 if (mThread == null) {
201 mThread = new Thread();
202 mThread.start();
210 * sound to play, but if the CPU turns off before mThread gets to work, it won't. The
220 if (mWakeLock != null || mThread != null) {
224 + " mThread=" + mThread);
  /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/services/java/com/android/server/
VibratorService.java 232 if (mThread != null) {
233 synchronized (mThread) {
234 mThread.mDone = true;
235 mThread.notify();
237 mThread = null;
258 // mThread better be null here. doCancelVibrate should always be
260 mThread = new VibrateThread(vib);
261 mThread.start();
352 if (mThread == this) {
353 mThread = null
    [all...]
ViewServer.java 67 private Thread mThread;
112 if (mThread != null) {
117 mThread = new Thread(this, "Remote View Server [port=" + mPort + "]");
119 mThread.start();
135 if (mThread != null) {
137 mThread.interrupt();
146 mThread = null;
168 return mThread != null && mThread.isAlive();
175 while (Thread.currentThread() == mThread) {
    [all...]
NotificationPlayer.java 200 mThread = null;
227 private CmdThread mThread;
298 if (mThread == null) {
300 mThread = new CmdThread();
301 mThread.start();
309 * sound to play, but if the CPU turns off before mThread gets to work, it won't. The
319 if (mWakeLock != null || mThread != null) {
323 + " mThread=" + mThread);
  /frameworks/base/core/java/com/android/internal/service/wallpaper/
ImageWallpaper.java 43 private HandlerThread mThread;
53 mThread = new HandlerThread("Wallpaper", Process.THREAD_PRIORITY_FOREGROUND);
54 mThread.start();
55 setCallbackLooper(mThread.getLooper());
66 if (mThread != null) {
67 mThread.quit();
  /development/simulator/app/
DeviceManager.cpp 43 : mThread(NULL), mDisplay(NULL), mNumDisplays(0), mKeyMap(NULL),
56 if (mThread != NULL && mThread->IsRunning()) {
57 mThread->KillChildProcesses();
59 if (mThread != NULL) {
63 code = mThread->Wait(); // join the old thread
66 delete mThread;
67 mThread = NULL;
178 if (mThread != NULL) {
181 if (mThread->IsRunning())
    [all...]
DeviceManager.h 79 if (mThread != NULL)
80 return mThread->IsRunning();
267 DeviceThread* mThread;
  /dalvik/hit/src/com/android/hit/
RootObj.java 24 int mThread;
44 mThread = thread;
  /frameworks/base/core/java/android/os/
Looper.java 62 Thread mThread;
184 mThread = Thread.currentThread();
199 return mThread;
210 pw.println(prefix + "mThread=" + mThread);
  /frameworks/base/include/media/stagefright/
AMRWriter.h 55 pthread_t mThread;
  /dalvik/dx/tests/098-dex-jsr-ret-throw/
ViewDebug$ViewServer.class 
  /frameworks/base/core/java/android/app/
Service.java 659 mThread = thread; // NOTE: unused - remove?
673 private ActivityThread mThread = null;
  /frameworks/base/libs/utils/
Threads.cpp 674 mThread(thread_id_t(-1)),
703 mThread = thread_id_t(-1);
713 this, name, priority, stack, &mThread);
716 this, name, priority, stack, &mThread);
722 mThread = thread_id_t(-1);
779 self->mThread = thread_id_t(-1);
781 self->mThread = thread_id_t(-1); // thread id could be reused
803 if (mThread == getThreadId()) {

Completed in 693 milliseconds

1 2 3