Searched defs:obtainMessage (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/os/
H A DHandler.java176 public final Message obtainMessage() method in class:Handler
182 * Same as {@link #obtainMessage()}, except that it also sets the what member of the returned Message.
187 public final Message obtainMessage(int what) method in class:Handler
194 * Same as {@link #obtainMessage()}, except that it also sets the what and obj members
201 public final Message obtainMessage(int what, Object obj) method in class:Handler
208 * Same as {@link #obtainMessage()}, except that it also sets the what, arg1 and arg2 members of the returned
215 public final Message obtainMessage(int what, int arg1, int arg2) method in class:Handler
222 * Same as {@link #obtainMessage()}, except that it also sets the what, obj, arg1,and arg2 values on the
230 public final Message obtainMessage(int what, int arg1, int arg2, Object obj) method in class:Handler
/frameworks/base/core/java/com/android/internal/os/
H A DHandlerCaller.java135 public Message obtainMessage(int what) { method in class:HandlerCaller
136 return mH.obtainMessage(what);
140 return mH.obtainMessage(what, arg1 ? 1 : 0, 0, arg2);
147 return mH.obtainMessage(what, arg1 ? 1 : 0, 0, args);
151 return mH.obtainMessage(what, 0, 0, arg1);
155 return mH.obtainMessage(what, arg1, 0);
159 return mH.obtainMessage(what, arg1, arg2);
163 return mH.obtainMessage(what, arg1, 0, arg2);
167 return mH.obtainMessage(what, arg1, arg2, arg3);
175 return mH.obtainMessage(wha
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DHierarchicalStateMachine.java55 * <code>obtainMessage</code>. When the state machine receives a message the
175 hw.sendMessage(hw.obtainMessage());
271 sendMessage(obtainMessage(CMD_3));
317 sendMessage(obtainMessage(CMD_4));
339 sendMessage(obtainMessage(CMD_5));
379 * hsm.sendMessage(obtainMessage(hsm.CMD_1));
380 * hsm.sendMessage(obtainMessage(hsm.CMD_2));
935 Message newMsg = obtainMessage();
944 sendMessage(obtainMessage(HSM_QUIT_CMD, mQuitObj));
1171 public final Message obtainMessage() method in class:HierarchicalStateMachine
1182 public final Message obtainMessage(int what) { method in class:HierarchicalStateMachine
1194 public final Message obtainMessage(int what, Object obj) method in class:HierarchicalStateMachine
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DIInputConnectionWrapper.java130 dispatchMessage(obtainMessage(DO_FINISH_COMPOSING_TEXT));
147 dispatchMessage(obtainMessage(DO_BEGIN_BATCH_EDIT));
151 dispatchMessage(obtainMessage(DO_END_BATCH_EDIT));
377 Message obtainMessage(int what) { method in class:IInputConnectionWrapper
378 return mH.obtainMessage(what);
382 return mH.obtainMessage(what, arg1, arg2);
386 return mH.obtainMessage(what, 0, 0, arg1);
393 return mH.obtainMessage(what, arg1, 0, args);
400 return mH.obtainMessage(what, arg1, arg2, args);
409 return mH.obtainMessage(wha
[all...]

Completed in 79 milliseconds