Lines Matching refs:args

70             WorkerArgs args = (WorkerArgs) msg.obj;
79 cursor = resolver.query(args.uri, args.projection,
80 args.selection, args.selectionArgs,
81 args.orderBy);
92 args.result = cursor;
96 args.result = resolver.insert(args.uri, args.values);
100 args.result = resolver.update(args.uri, args.values, args.selection,
101 args.selectionArgs);
105 args.result = resolver.delete(args.uri, args.selection, args.selectionArgs);
111 Message reply = args.handler.obtainMessage(token);
112 reply.obj = args;
171 WorkerArgs args = new WorkerArgs();
172 args.handler = this;
173 args.uri = uri;
174 args.projection = projection;
175 args.selection = selection;
176 args.selectionArgs = selectionArgs;
177 args.orderBy = orderBy;
178 args.cookie = cookie;
179 msg.obj = args;
213 WorkerArgs args = new WorkerArgs();
214 args.handler = this;
215 args.uri = uri;
216 args.cookie = cookie;
217 args.values = initialValues;
218 msg.obj = args;
239 WorkerArgs args = new WorkerArgs();
240 args.handler = this;
241 args.uri = uri;
242 args.cookie = cookie;
243 args.values = values;
244 args.selection = selection;
245 args.selectionArgs = selectionArgs;
246 msg.obj = args;
267 WorkerArgs args = new WorkerArgs();
268 args.handler = this;
269 args.uri = uri;
270 args.cookie = cookie;
271 args.selection = selection;
272 args.selectionArgs = selectionArgs;
273 msg.obj = args;
331 WorkerArgs args = (WorkerArgs) msg.obj;
344 onQueryComplete(token, args.cookie, (Cursor) args.result);
348 onInsertComplete(token, args.cookie, (Uri) args.result);
352 onUpdateComplete(token, args.cookie, (Integer) args.result);
356 onDeleteComplete(token, args.cookie, (Integer) args.result);