Lines Matching defs:args
70 SomeArgs args = SomeArgs.obtain();
71 args.arg1 = status;
72 args.arg2 = requestProfile;
73 args.arg3 = responseProfile;
74 mHandler.obtainMessage(MSG_RECEIVE_SESSION_MODIFY_RESPONSE, args).sendToTarget();
84 SomeArgs args = SomeArgs.obtain();
85 args.arg1 = width;
86 args.arg2 = height;
87 mHandler.obtainMessage(MSG_CHANGE_PEER_DIMENSIONS, args).sendToTarget();
110 SomeArgs args;
116 args = (SomeArgs) msg.obj;
118 int status = (int) args.arg1;
119 VideoProfile requestProfile = (VideoProfile) args.arg2;
120 VideoProfile responseProfile = (VideoProfile) args.arg3;
125 args.recycle();
132 args = (SomeArgs) msg.obj;
134 int width = (int) args.arg1;
135 int height = (int) args.arg2;
138 args.recycle();