Searched defs:Handler (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/sax/java/android/sax/
H A DRootElement.java68 final Handler handler = new Handler();
97 class Handler extends DefaultHandler { class in class:RootElement
/frameworks/native/services/surfaceflinger/
H A DMessageQueue.h63 class Handler : public MessageHandler { class in class:android::MessageQueue
71 Handler(MessageQueue& queue) : mQueue(queue), mEventMask(0) { } function in class:android::MessageQueue::Handler
77 friend class Handler;
84 sp<Handler> mHandler;
/frameworks/base/core/java/android/os/
H A DHandler.java25 * A Handler allows you to send and process {@link Message} and Runnable
26 * objects associated with a thread's {@link MessageQueue}. Each Handler
28 * queue. When you create a new Handler, it is bound to the thread /
33 * <p>There are two main uses for a Handler: (1) to schedule messages and
45 * processed by the Handler's {@link #handleMessage} method (requiring that
46 * you implement a subclass of Handler).
48 * <p>When posting or sending to a Handler, you can either
59 * the main application thread through a Handler. This is done by calling
62 * in the Handler's message queue and processed when appropriate.
64 public class Handler { class
110 public Handler() { method in class:Handler
124 public Handler(Callback callback) { method in class:Handler
133 public Handler(Looper looper) { method in class:Handler
144 public Handler(Looper looper, Callback callback) { method in class:Handler
164 public Handler(boolean async) { method in class:Handler
185 public Handler(Callback callback, boolean async) { method in class:Handler
224 public Handler(Looper looper, Callback callback, boolean async) { method in class:Handler
[all...]

Completed in 309 milliseconds