Home | History | Annotate | Download | only in cts

Lines Matching refs:looperThread

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());
861 (new LooperThread()).start();
882 class LooperThread extends HandlerThread {
884 public LooperThread() {