HomeSort by relevance Sort by last modified time
    Searched refs:mWorkerThread (Results 1 - 5 of 5) sorted by null

  /development/tools/emulator/system/camera/
EmulatedCameraDevice.h 244 return mWorkerThread.get() != NULL && mState != ECDS_CONSTRUCTED;
435 return mWorkerThread.get();
447 sp<WorkerThread> mWorkerThread;
EmulatedCameraDevice.cpp 66 mWorkerThread = new WorkerThread(this);
  /packages/apps/Gallery/src/com/android/camera/
GalleryPicker.java 76 Thread mWorkerThread;
303 mWorkerThread = new Thread("GalleryPicker Worker") {
309 BitmapManager.instance().allowThreadDecoding(mWorkerThread);
310 mWorkerThread.start();
314 if (mWorkerThread != null) {
315 BitmapManager.instance().cancelThreadDecoding(mWorkerThread, getContentResolver());
318 mWorkerThread.join();
322 mWorkerThread = null;
  /frameworks/base/core/java/android/widget/
RemoteViewsAdapter.java 79 private HandlerThread mWorkerThread;
730 mWorkerThread = new HandlerThread("RemoteViewsCache-loader");
731 mWorkerThread.start();
732 mWorkerQueue = new Handler(mWorkerThread.getLooper());
745 if (mWorkerThread != null) {
746 mWorkerThread.quit();
    [all...]
  /packages/apps/Mms/src/com/android/mms/data/
Contact.java 488 Thread mWorkerThread;
493 mWorkerThread = new Thread(new Runnable() {
515 mWorkerThread.start();
    [all...]

Completed in 252 milliseconds