OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LooperThread
(Results
1 - 5
of
5
) sorted by null
/frameworks/av/media/libstagefright/foundation/
ALooper.cpp
33
struct ALooper::
LooperThread
: public Thread {
34
LooperThread
(ALooper *looper, bool canCallJava)
55
virtual ~
LooperThread
() {}
61
DISALLOW_EVIL_CONSTRUCTORS(
LooperThread
);
118
mThread = new
LooperThread
(this, canCallJava);
130
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/
MessageQueueTest.java
37
TestLooperThread
looperThread
= new TestLooperThread(Test.ADD_IDLE_HANDLER);
38
looperThread
.start();
41
if (!
looperThread
.hasIdleHandlerBeenCalled()) {
42
fail("IdleHandler#queueIdle was NOT called: " +
looperThread
.getTestProgress());
45
assertTrue("The looper should have been running.",
looperThread
.quit());
50
TestLooperThread
looperThread
= new TestLooperThread(Test.REMOVE_IDLE_HANDLER);
51
looperThread
.start();
54
if (
looperThread
.hasIdleHandlerBeenCalled()) {
55
fail("IdleHandler#queueIdle was called: " +
looperThread
.getTestProgress());
58
assertTrue("The looper should have been running.",
looperThread
.quit())
[
all
...]
MessengerTest.java
253
(new
LooperThread
()).start();
294
class
LooperThread
extends HandlerThread {
296
public
LooperThread
() {