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

  /frameworks/base/tests/Camera2Tests/CameraToo/src/com/example/android/camera2/cameratoo/
CameraTooActivity.java 66 HandlerThread mBackgroundThread;
128 mBackgroundThread = new HandlerThread("background");
129 mBackgroundThread.start();
130 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
168 mBackgroundThread.quitSafely();
170 mBackgroundThread.join();
306 * {@code mBackgroundThread}.</p>
338 * {@code mBackgroundThread}.</p>
397 * {@code mBackgroundThread}.</p>
  /developers/build/prebuilts/gradle/Camera2Basic/Application/src/main/java/com/example/android/camera2basic/
Camera2BasicFragment.java 201 private HandlerThread mBackgroundThread;
533 mBackgroundThread = new HandlerThread("CameraBackground");
534 mBackgroundThread.start();
535 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
542 mBackgroundThread.quitSafely();
544 mBackgroundThread.join();
545 mBackgroundThread = null;
  /developers/build/prebuilts/gradle/Camera2Video/Application/src/main/java/com/example/android/camera2video/
Camera2VideoFragment.java 153 private HandlerThread mBackgroundThread;
315 mBackgroundThread = new HandlerThread("CameraBackground");
316 mBackgroundThread.start();
317 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
324 mBackgroundThread.quitSafely();
326 mBackgroundThread.join();
327 mBackgroundThread = null;
  /developers/samples/android/media/Camera2Basic/Application/src/main/java/com/example/android/camera2basic/
Camera2BasicFragment.java 201 private HandlerThread mBackgroundThread;
533 mBackgroundThread = new HandlerThread("CameraBackground");
534 mBackgroundThread.start();
535 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
542 mBackgroundThread.quitSafely();
544 mBackgroundThread.join();
545 mBackgroundThread = null;
  /developers/samples/android/media/Camera2Video/Application/src/main/java/com/example/android/camera2video/
Camera2VideoFragment.java 153 private HandlerThread mBackgroundThread;
315 mBackgroundThread = new HandlerThread("CameraBackground");
316 mBackgroundThread.start();
317 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
324 mBackgroundThread.quitSafely();
326 mBackgroundThread.join();
327 mBackgroundThread = null;
  /development/samples/browseable/Camera2Basic/src/com.example.android.camera2basic/
Camera2BasicFragment.java 200 private HandlerThread mBackgroundThread;
506 mBackgroundThread = new HandlerThread("CameraBackground");
507 mBackgroundThread.start();
508 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
515 mBackgroundThread.quitSafely();
517 mBackgroundThread.join();
518 mBackgroundThread = null;
  /development/samples/browseable/Camera2Video/src/com.example.android.camera2video/
Camera2VideoFragment.java 153 private HandlerThread mBackgroundThread;
315 mBackgroundThread = new HandlerThread("CameraBackground");
316 mBackgroundThread.start();
317 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
324 mBackgroundThread.quitSafely();
326 mBackgroundThread.join();
327 mBackgroundThread = null;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogProvider.java 127 private HandlerThread mBackgroundThread;
151 mBackgroundThread = new HandlerThread("CallLogProviderWorker",
153 mBackgroundThread.start();
154 mBackgroundHandler = new Handler(mBackgroundThread.getLooper()) {
ContactsProvider2.java     [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
RunningState.java 226 final HandlerThread mBackgroundThread;
750 mBackgroundThread = new HandlerThread("RunningState:Background");
751 mBackgroundThread.start();
752 mBackgroundHandler = new BackgroundHandler(mBackgroundThread.getLooper());
    [all...]
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
TestService.java 248 RunnerThread mBackgroundThread;
306 mBackgroundThread = new RunnerThread("background", new Runnable() {
342 mBackgroundThread.start();
    [all...]

Completed in 375 milliseconds