HomeSort by relevance Sort by last modified time
    Searched defs:LooperThread (Results 1 - 5 of 5) 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 35 private abstract class LooperThread extends Thread {
54 LooperThread thread = new LooperThread() {
  /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 253 (new LooperThread()).start();
294 class LooperThread extends HandlerThread {
296 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...]

Completed in 109 milliseconds