Home | History | Annotate | Download | only in os

Lines Matching refs:orig

141      * @param orig Original message to copy.
144 public static Message obtain(Message orig) {
146 m.what = orig.what;
147 m.arg1 = orig.arg1;
148 m.arg2 = orig.arg2;
149 m.obj = orig.obj;
150 m.replyTo = orig.replyTo;
151 m.sendingUid = orig.sendingUid;
152 if (orig.data != null) {
153 m.data = new Bundle(orig.data);
155 m.target = orig.target;
156 m.callback = orig.callback;