Lines Matching refs:what

259             sb.append("#").append(message.what);
268 * message "what" field.
276 return "0x" + Integer.toHexString(message.what);
290 * Same as {@link #obtainMessage()}, except that it also sets the what member of the returned Message.
292 * @param what Value to assign to the returned Message.what field.
295 public final Message obtainMessage(int what)
297 return Message.obtain(this, what);
302 * Same as {@link #obtainMessage()}, except that it also sets the what and obj members
305 * @param what Value to assign to the returned Message.what field.
309 public final Message obtainMessage(int what, Object obj)
311 return Message.obtain(this, what, obj);
316 * Same as {@link #obtainMessage()}, except that it also sets the what, arg1 and arg2 members of the returned
318 * @param what Value to assign to the returned Message.what field.
323 public final Message obtainMessage(int what, int arg1, int arg2)
325 return Message.obtain(this, what, arg1, arg2);
330 * Same as {@link #obtainMessage()}, except that it also sets the what, obj, arg1,and arg2 values on the
332 * @param what Value to assign to the returned Message.what field.
338 public final Message obtainMessage(int what, int arg1, int arg2, Object obj)
340 return Message.obtain(this, what, arg1, arg2, obj);
541 * Sends a Message containing only the what value.
547 public final boolean sendEmptyMessage(int what)
549 return sendEmptyMessageDelayed(what, 0);
553 * Sends a Message containing only the what value, to be delivered
561 public final boolean sendEmptyMessageDelayed(int what, long delayMillis) {
563 msg.what = what;
568 * Sends a Message containing only the what value, to be delivered
577 public final boolean sendEmptyMessageAtTime(int what, long uptimeMillis) {
579 msg.what = what;
665 * Remove any pending posts of messages with code 'what' that are in the
668 public final void removeMessages(int what) {
669 mQueue.removeMessages(this, what, null);
673 * Remove any pending posts of messages with code 'what' and whose obj is
677 public final void removeMessages(int what, Object object) {
678 mQueue.removeMessages(this, what, object);
691 * Check if there are any pending posts of messages with code 'what' in
694 public final boolean hasMessages(int what) {
695 return mQueue.hasMessages(this, what, null);
707 * Check if there are any pending posts of messages with code 'what' and
710 public final boolean hasMessages(int what, Object object) {
711 return mQueue.hasMessages(this, what, object);