Home | History | Annotate | Download | only in utils

Lines Matching defs:Message

48  * A message that can be posted to a Looper.
50 struct Message {
51 Message() : what(0) { }
52 Message(int w) : what(w) { }
54 /* The message type. (interpretation is left up to the handler) */
60 * Interface for a Looper message handler.
62 * The Looper holds a strong reference to the message handler whenever it has
63 * a message to deliver to it. Make sure to call Looper::removeMessages
73 * Handles a message.
75 virtual void handleMessage(const Message& message) = 0;
80 * A simple proxy that holds a weak reference to a message handler.
88 virtual void handleMessage(const Message& message);
343 * Enqueues a message to be processed by the specified handler.
348 void sendMessage(const sp<MessageHandler>& handler, const Message& message);
351 * Enqueues a message to be processed by the specified handler after all pending messages
359 const Message& message);
362 * Enqueues a message to be processed by the specified handler after all pending messages
370 const Message& message);
440 const Message& m) : uptime(u), handler(h), message(m) {
445 Message message;