Lines Matching defs: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
106 public static Message obtain() {
120 * Same as {@link #obtain()}, but copies the values of an existing
125 public static Message obtain(Message orig) {
126 Message m = obtain();
142 * Same as {@link #obtain()}, but sets the value for the <em>target</em> member on the Message returned.
146 public static Message obtain(Handler h) {
147 Message m = obtain();
154 * Same as {@link #obtain(Handler)}, but assigns a callback Runnable on
160 public static Message obtain(Handler h, Runnable callback) {
161 Message m = obtain();
169 * Same as {@link #obtain()}, but sets the values for both <em>target</em> and
175 public static Message obtain(Handler h, int what) {
176 Message m = obtain();
184 * Same as {@link #obtain()}, but sets the values of the <em>target</em>, <em>what</em>, and <em>obj</em>
191 public static Message obtain(Handler h, int what, Object obj) {
192 Message m = obtain();
201 * Same as {@link #obtain()}, but sets the values of the <em>target</em>, <em>what</em>,
210 public static Message obtain(Handler h, int what, int arg1, int arg2) {
211 Message m = obtain();
221 * Same as {@link #obtain()}, but sets the values of the <em>target</em>, <em>what</em>,
231 public static Message obtain(Handler h, int what,
233 Message m = obtain();
426 /** Constructor (but the preferred way to get a Message is to call {@link #obtain() Message.obtain()}).
467 Message msg = Message.obtain();