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

  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
CameraPolicyTest.java 46 private HandlerThread mBackgroundThread;
122 mBackgroundThread = new HandlerThread("CameraBackground");
123 mBackgroundThread.start();
124 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
131 mBackgroundThread.quitSafely();
133 mBackgroundThread.join();
134 mBackgroundThread = null;
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
DocumentLoader.java 55 private Thread mBackgroundThread;
104 if (mBackgroundThread == null) {
105 mBackgroundThread = new BackgroundLoaderThread();
106 mBackgroundThread.start();
118 Preconditions.checkState(mBackgroundThread != null);
140 mBackgroundThread = null;
152 thread = mBackgroundThread;
  /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/Camera2Video/Application/src/main/java/com/example/android/camera2video/
Camera2VideoFragment.java 172 private HandlerThread mBackgroundThread;
336 mBackgroundThread = new HandlerThread("CameraBackground");
337 mBackgroundThread.start();
338 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
345 mBackgroundThread.quitSafely();
347 mBackgroundThread.join();
348 mBackgroundThread = null;
  /developers/samples/android/media/Camera2Video/Application/src/main/java/com/example/android/camera2video/
Camera2VideoFragment.java 172 private HandlerThread mBackgroundThread;
336 mBackgroundThread = new HandlerThread("CameraBackground");
337 mBackgroundThread.start();
338 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
345 mBackgroundThread.quitSafely();
347 mBackgroundThread.join();
348 mBackgroundThread = null;
  /development/samples/browseable/Camera2Video/src/com.example.android.camera2video/
Camera2VideoFragment.java 172 private HandlerThread mBackgroundThread;
336 mBackgroundThread = new HandlerThread("CameraBackground");
337 mBackgroundThread.start();
338 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
345 mBackgroundThread.quitSafely();
347 mBackgroundThread.join();
348 mBackgroundThread = null;
  /frameworks/rs/java/tests/RsCameraDemo/src/com/android/example/rscamera/
CameraOps.java 97 private HandlerThread mBackgroundThread;
168 mBackgroundThread = new HandlerThread("CameraBackground");
169 mBackgroundThread.start();
170 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
274 mBackgroundThread.quitSafely();
276 mBackgroundThread.join();
277 mBackgroundThread = null;
  /developers/build/prebuilts/gradle/Camera2Basic/Application/src/main/java/com/example/android/camera2basic/
Camera2BasicFragment.java 220 private HandlerThread mBackgroundThread;
653 mBackgroundThread = new HandlerThread("CameraBackground");
654 mBackgroundThread.start();
655 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
662 mBackgroundThread.quitSafely();
664 mBackgroundThread.join();
665 mBackgroundThread = null;
    [all...]
  /developers/samples/android/media/Camera2Basic/Application/src/main/java/com/example/android/camera2basic/
Camera2BasicFragment.java 220 private HandlerThread mBackgroundThread;
653 mBackgroundThread = new HandlerThread("CameraBackground");
654 mBackgroundThread.start();
655 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
662 mBackgroundThread.quitSafely();
664 mBackgroundThread.join();
665 mBackgroundThread = null;
    [all...]
  /development/samples/browseable/Camera2Basic/src/com.example.android.camera2basic/
Camera2BasicFragment.java 220 private HandlerThread mBackgroundThread;
653 mBackgroundThread = new HandlerThread("CameraBackground");
654 mBackgroundThread.start();
655 mBackgroundHandler = new Handler(mBackgroundThread.getLooper());
662 mBackgroundThread.quitSafely();
664 mBackgroundThread.join();
665 mBackgroundThread = null;
    [all...]
  /developers/build/prebuilts/gradle/Camera2Raw/Application/src/main/java/com/example/android/camera2raw/
Camera2RawFragment.java 243 private HandlerThread mBackgroundThread;
    [all...]
  /developers/samples/android/media/Camera2Raw/Application/src/main/java/com/example/android/camera2raw/
Camera2RawFragment.java 243 private HandlerThread mBackgroundThread;
    [all...]
  /development/samples/browseable/Camera2Raw/src/com.example.android.camera2raw/
Camera2RawFragment.java 243 private HandlerThread mBackgroundThread;
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogProvider.java 159 private HandlerThread mBackgroundThread;
191 mBackgroundThread = new HandlerThread(getProviderName() + "Worker",
193 mBackgroundThread.start();
194 mBackgroundHandler = new Handler(mBackgroundThread.getLooper()) {
ContactsProvider2.java     [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...]
  /packages/apps/Settings/src/com/android/settings/applications/
RunningState.java 224 final HandlerThread mBackgroundThread;
787 mBackgroundThread = new HandlerThread("RunningState:Background");
788 mBackgroundThread.start();
789 mBackgroundHandler = new BackgroundHandler(mBackgroundThread.getLooper());
    [all...]

Completed in 818 milliseconds