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

/frameworks/base/core/java/com/android/internal/os/
H A DHandlerCaller.java89 public Message obtainMessage(int what) { method in class:HandlerCaller
90 return mH.obtainMessage(what);
94 return mH.obtainMessage(what, arg1 ? 1 : 0, 0, arg2);
101 return mH.obtainMessage(what, arg1 ? 1 : 0, 0, args);
105 return mH.obtainMessage(what, 0, 0, arg1);
109 return mH.obtainMessage(what, arg1, 0);
113 return mH.obtainMessage(what, arg1, arg2);
117 return mH.obtainMessage(what, arg1, 0, arg2);
121 return mH.obtainMessage(what, arg1, arg2, arg3);
129 return mH.obtainMessage(wha
[all...]
/frameworks/base/core/java/android/os/
H A DHandler.java254 public final Message obtainMessage() method in class:Handler
260 * Same as {@link #obtainMessage()}, except that it also sets the what member of the returned Message.
265 public final Message obtainMessage(int what) method in class:Handler
272 * Same as {@link #obtainMessage()}, except that it also sets the what and obj members
279 public final Message obtainMessage(int what, Object obj) method in class:Handler
286 * Same as {@link #obtainMessage()}, except that it also sets the what, arg1 and arg2 members of the returned
293 public final Message obtainMessage(int what, int arg1, int arg2) method in class:Handler
300 * Same as {@link #obtainMessage()}, except that it also sets the what, obj, arg1,and arg2 values on the
308 public final Message obtainMessage(int what, int arg1, int arg2, Object obj) method in class:Handler
/frameworks/base/core/java/com/android/internal/view/
H A DIInputConnectionWrapper.java146 dispatchMessage(obtainMessage(DO_FINISH_COMPOSING_TEXT));
163 dispatchMessage(obtainMessage(DO_BEGIN_BATCH_EDIT));
167 dispatchMessage(obtainMessage(DO_END_BATCH_EDIT));
427 Message obtainMessage(int what) { method in class:IInputConnectionWrapper
428 return mH.obtainMessage(what);
432 return mH.obtainMessage(what, arg1, arg2);
436 return mH.obtainMessage(what, 0, 0, arg1);
443 return mH.obtainMessage(what, arg1, 0, args);
450 return mH.obtainMessage(what, arg1, arg2, args);
459 return mH.obtainMessage(wha
[all...]
/frameworks/base/services/java/com/android/server/
H A DNsdService.java789 private Message obtainMessage(Message srcMsg) { method in class:NsdService
797 Message dstMsg = obtainMessage(msg);
804 Message dstMsg = obtainMessage(msg);
812 Message dstMsg = obtainMessage(msg);
/frameworks/base/core/java/com/android/internal/util/
H A DStateMachine.java67 * <code>obtainMessage</code>. When the state machine receives a message the
161 hw.sendMessage(hw.obtainMessage());
275 sendMessage(obtainMessage(CMD_3));
321 sendMessage(obtainMessage(CMD_4));
343 sendMessage(obtainMessage(CMD_5));
382 hsm.sendMessage(obtainMessage(hsm.CMD_1));
383 hsm.sendMessage(obtainMessage(hsm.CMD_2));
946 sendMessageAtFrontOfQueue(obtainMessage(SM_INIT_CMD, mSmHandlerObj));
1194 Message newMsg = obtainMessage();
1203 sendMessage(obtainMessage(SM_QUIT_CM
1520 public final Message obtainMessage() { method in class:StateMachine
1535 public final Message obtainMessage(int what) { method in class:StateMachine
1552 public final Message obtainMessage(int what, Object obj) { method in class:StateMachine
1569 public final Message obtainMessage(int what, int arg1) { method in class:StateMachine
1588 public final Message obtainMessage(int what, int arg1, int arg2) { method in class:StateMachine
1607 public final Message obtainMessage(int what, int arg1, int arg2, Object obj) { method in class:StateMachine
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pService.java766 sendMessageDelayed(obtainMessage(DISABLE_P2P_TIMED_OUT,
1278 sendMessageDelayed(obtainMessage(GROUP_CREATING_TIMED_OUT,
2643 Message dstMsg = obtainMessage(msg);
2650 Message dstMsg = obtainMessage(msg);
2658 Message dstMsg = obtainMessage(msg);
2666 private Message obtainMessage(Message srcMsg) { method in class:WifiP2pService.P2pStateMachine

Completed in 6016 milliseconds