Home
last modified time | relevance | path

Searched refs:mBackgroundThread (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
DDocumentLoader.java55 private Thread mBackgroundThread; field in DocumentLoader
104 if (mBackgroundThread == null) { in resume()
105 mBackgroundThread = new BackgroundLoaderThread(); in resume()
106 mBackgroundThread.start(); in resume()
118 Preconditions.checkState(mBackgroundThread != null); in getNextTaskOrReleaseBackgroundThread()
140 mBackgroundThread = null; in getNextTaskOrReleaseBackgroundThread()
152 thread = mBackgroundThread; in close()
/frameworks/base/tests/Camera2Tests/CameraToo/src/com/example/android/camera2/cameratoo/
DCameraTooActivity.java66 HandlerThread mBackgroundThread; field in CameraTooActivity
128 mBackgroundThread = new HandlerThread("background"); in onResume()
129 mBackgroundThread.start(); in onResume()
130 mBackgroundHandler = new Handler(mBackgroundThread.getLooper()); in onResume()
168 mBackgroundThread.quitSafely(); in onPause()
170 mBackgroundThread.join(); in onPause()
/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
DCameraOps.java97 private HandlerThread mBackgroundThread; field in CameraOps
168 mBackgroundThread = new HandlerThread("CameraBackground"); in resume()
169 mBackgroundThread.start(); in resume()
170 mBackgroundHandler = new Handler(mBackgroundThread.getLooper()); in resume()
274 mBackgroundThread.quitSafely(); in pause()
276 mBackgroundThread.join(); in pause()
277 mBackgroundThread = null; in pause()
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
DCameraOps.java91 private HandlerThread mBackgroundThread; field in CameraOps
182 mBackgroundThread = new HandlerThread("CameraBackground"); in resume()
183 mBackgroundThread.start(); in resume()
184 mBackgroundHandler = new Handler(mBackgroundThread.getLooper()); in resume()
299 mBackgroundThread.quitSafely(); in pause()
301 mBackgroundThread.join(); in pause()
302 mBackgroundThread = null; in pause()
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
DTestService.java248 RunnerThread mBackgroundThread; field in TestService.TestRunner
306 mBackgroundThread = new RunnerThread("background", new Runnable() { in run()
342 mBackgroundThread.start(); in run()