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

  /frameworks/av/media/libstagefright/foundation/
ALooper.cpp 36 struct ALooper::LooperThread : public Thread {
37 LooperThread(ALooper *looper, bool canCallJava)
58 virtual ~LooperThread() {}
64 DISALLOW_EVIL_CONSTRUCTORS(LooperThread);
121 mThread = new LooperThread(this, canCallJava);
133 sp<LooperThread> thread;
  /frameworks/base/core/tests/coretests/src/android/content/
ContentQueryMapTest.java 37 private abstract class LooperThread extends Thread {
56 LooperThread thread = new LooperThread() {
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
ALooper.h 79 struct LooperThread;
80 sp<LooperThread> mThread;
  /frameworks/base/core/tests/coretests/src/android/os/
TestHandlerThread.java 36 (new LooperThread()).start();
80 class LooperThread extends Thread {
  /cts/tests/tests/os/src/android/os/cts/
MessengerTest.java 260 (new LooperThread()).start();
301 class LooperThread extends HandlerThread {
303 public LooperThread() {
MessageQueueTest.java 46 TestLooperThread looperThread = new TestLooperThread(Test.ADD_IDLE_HANDLER);
47 looperThread.start();
50 if (!looperThread.hasIdleHandlerBeenCalled()) {
51 fail("IdleHandler#queueIdle was NOT called: " + looperThread.getTestProgress());
54 assertTrue("The looper should have been running.", looperThread.quit());
59 TestLooperThread looperThread = new TestLooperThread(Test.REMOVE_IDLE_HANDLER);
60 looperThread.start();
63 if (looperThread.hasIdleHandlerBeenCalled()) {
64 fail("IdleHandler#queueIdle was called: " + looperThread.getTestProgress());
67 assertTrue("The looper should have been running.", looperThread.quit())
    [all...]
  /external/tensorflow/tensorflow/python/training/
coordinator.py 411 @tf_export("train.LooperThread")
412 class LooperThread(threading.Thread):
431 """Create a LooperThread.
446 super(LooperThread, self).__init__()
461 """Start a LooperThread that calls a function periodically.
478 looper = LooperThread(coord, timer_interval_secs, target=target, args=args,
coordinator_test.py 349 thread = coordinator.LooperThread.loop(
357 thread = coordinator.LooperThread.loop(
368 thread = coordinator.LooperThread.loop(
supervisor.py 776 """Start a LooperThread that calls a function periodically.
794 looper = coordinator.LooperThread(self._coord, timer_interval_secs,
    [all...]
training.py 52 @@LooperThread
131 from tensorflow.python.training.coordinator import LooperThread
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/synthetic/
TestInterface.java 61 private LooperThread mLT;
70 mLT = new LooperThread(this, callback);
74 static class LooperThread extends Thread {
88 LooperThread(TestInterface ti, TestResultCallback callback) {
  /cts/tests/tests/security/src/android/security/cts/
StagefrightTest.java     [all...]
  /packages/services/Car/tests/android_car_api_test/src/android/car/apitest/
CarAppFocusManagerTest.java 41 private final LooperThread mEventThread = new LooperThread();
314 LooperThread eventThread) throws InterruptedException, CarNotConnectedException {
321 private static Car createCar(Context context, LooperThread eventThread)
457 private static class LooperThread extends Thread {
  /frameworks/base/core/tests/coretests/src/android/animation/
ValueAnimatorTests.java     [all...]

Completed in 441 milliseconds