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

  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
LegacyCameraConnectionFragment.java 136 private HandlerThread backgroundThread;
181 backgroundThread = new HandlerThread("CameraBackground");
182 backgroundThread.start();
189 backgroundThread.quitSafely();
191 backgroundThread.join();
192 backgroundThread = null;
CameraConnectionFragment.java 187 private HandlerThread backgroundThread;
459 backgroundThread = new HandlerThread("ImageListener");
460 backgroundThread.start();
461 backgroundHandler = new Handler(backgroundThread.getLooper());
468 backgroundThread.quitSafely();
470 backgroundThread.join();
471 backgroundThread = null;
  /external/tensorflow/tensorflow/lite/examples/android/app/src/main/java/org/tensorflow/demo/
LegacyCameraConnectionFragment.java 136 private HandlerThread backgroundThread;
181 backgroundThread = new HandlerThread("CameraBackground");
182 backgroundThread.start();
189 backgroundThread.quitSafely();
191 backgroundThread.join();
192 backgroundThread = null;
CameraConnectionFragment.java 187 private HandlerThread backgroundThread;
453 backgroundThread = new HandlerThread("ImageListener");
454 backgroundThread.start();
455 backgroundHandler = new Handler(backgroundThread.getLooper());
462 backgroundThread.quitSafely();
464 backgroundThread.join();
465 backgroundThread = null;
  /cts/hostsidetests/webkit/app/src/com/android/cts/webkit/
WebViewDeviceSideStartupTest.java 258 HandlerThread backgroundThread = new HandlerThread("WebViewLooperCtsHandlerThread");
259 backgroundThread.start();
260 new Handler(backgroundThread.getLooper()).post(new Runnable() {
266 backgroundThread.join(TEST_TIMEOUT_MS);
267 assertEquals(backgroundThread.getLooper(), webviewHolder[0].getWebViewLooper());
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowLooperTest.java 320 HandlerThread backgroundThread = new HandlerThread("resetTest");
321 backgroundThread.start();
322 Looper backgroundLooper = backgroundThread.getLooper();
366 Thread backgroundThread = new Thread(new Runnable() {
373 backgroundThread.start();
374 backgroundThread.join();
427 HandlerThread backgroundThread = new HandlerThread("resetTest");
428 backgroundThread.start();
429 Looper backgroundLooper = backgroundThread.getLooper();
  /developers/build/prebuilts/gradle/Camera2Video/kotlinApp/Application/src/main/java/com/example/android/camera2video/
Camera2VideoFragment.kt 141 private var backgroundThread: HandlerThread? = null
249 backgroundThread = HandlerThread("CameraBackground")
250 backgroundThread?.start()
251 backgroundHandler = Handler(backgroundThread?.looper)
258 backgroundThread?.quitSafely()
260 backgroundThread?.join()
261 backgroundThread = null
  /developers/samples/android/media/Camera2Video/kotlinApp/Application/src/main/java/com/example/android/camera2video/
Camera2VideoFragment.kt 141 private var backgroundThread: HandlerThread? = null
249 backgroundThread = HandlerThread("CameraBackground")
250 backgroundThread?.start()
251 backgroundHandler = Handler(backgroundThread?.looper)
258 backgroundThread?.quitSafely()
260 backgroundThread?.join()
261 backgroundThread = null
  /developers/build/prebuilts/gradle/Camera2Basic/kotlinApp/Application/src/main/java/com/example/android/camera2basic/
Camera2BasicFragment.kt 135 private var backgroundThread: HandlerThread? = null
470 backgroundThread = HandlerThread("CameraBackground").also { it.start() }
471 backgroundHandler = Handler(backgroundThread?.looper)
478 backgroundThread?.quitSafely()
480 backgroundThread?.join()
481 backgroundThread = null
  /developers/samples/android/media/Camera2Basic/kotlinApp/Application/src/main/java/com/example/android/camera2basic/
Camera2BasicFragment.kt 135 private var backgroundThread: HandlerThread? = null
470 backgroundThread = HandlerThread("CameraBackground").also { it.start() }
471 backgroundHandler = Handler(backgroundThread?.looper)
478 backgroundThread?.quitSafely()
480 backgroundThread?.join()
481 backgroundThread = null
  /external/tensorflow/tensorflow/lite/java/demo/app/src/main/java/com/example/android/tflitecamerademo/
Camera2BasicFragment.java 195 private HandlerThread backgroundThread;
685 backgroundThread = new HandlerThread(HANDLE_THREAD_NAME);
686 backgroundThread.start();
687 backgroundHandler = new Handler(backgroundThread.getLooper());
698 backgroundThread.quitSafely();
700 backgroundThread.join();
701 backgroundThread = null;
  /cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/EphemeralApp1/src/com/android/cts/ephemeralapp1/
ClientTest.java     [all...]

Completed in 1427 milliseconds