Home | History | Annotate | Download | only in os

Lines Matching refs:obtain

6  * You may obtain a copy of the License at
28 * one of these is to call {@link #obtain Message.obtain()} or one of the
122 public static Message obtain() {
137 * Same as {@link #obtain()}, but copies the values of an existing
142 public static Message obtain(Message orig) {
143 Message m = obtain();
160 * Same as {@link #obtain()}, but sets the value for the <em>target</em> member on the Message returned.
164 public static Message obtain(Handler h) {
165 Message m = obtain();
172 * Same as {@link #obtain(Handler)}, but assigns a callback Runnable on
178 public static Message obtain(Handler h, Runnable callback) {
179 Message m = obtain();
187 * Same as {@link #obtain()}, but sets the values for both <em>target</em> and
193 public static Message obtain(Handler h, int what) {
194 Message m = obtain();
202 * Same as {@link #obtain()}, but sets the values of the <em>target</em>, <em>what</em>, and <em>obj</em>
209 public static Message obtain(Handler h, int what, Object obj) {
210 Message m = obtain();
219 * Same as {@link #obtain()}, but sets the values of the <em>target</em>, <em>what</em>,
228 public static Message obtain(Handler h, int what, int arg1, int arg2) {
229 Message m = obtain();
239 * Same as {@link #obtain()}, but sets the values of the <em>target</em>, <em>what</em>,
249 public static Message obtain(Handler h, int what,
251 Message m = obtain();
473 /** Constructor (but the preferred way to get a Message is to call {@link #obtain() Message.obtain()}).
526 Message msg = Message.obtain();