Lines Matching defs:args
78 SomeArgs args = SomeArgs.obtain();
79 args.arg1 = status;
80 args.arg2 = requestProfile;
81 args.arg3 = responseProfile;
82 mHandler.obtainMessage(MessageHandler.MSG_RECEIVE_SESSION_MODIFY_RESPONSE, args)
100 SomeArgs args = SomeArgs.obtain();
101 args.arg1 = width;
102 args.arg2 = height;
103 mHandler.obtainMessage(MessageHandler.MSG_CHANGE_PEER_DIMENSIONS, args).sendToTarget();
154 SomeArgs args;
160 args = (SomeArgs) msg.obj;
162 int status = (int) args.arg1;
163 VideoProfile requestProfile = (VideoProfile) args.arg2;
164 VideoProfile responseProfile = (VideoProfile) args.arg3;
169 args.recycle();
176 args = (SomeArgs) msg.obj;
178 int width = (int) args.arg1;
179 int height = (int) args.arg2;
182 args.recycle();