Home | History | Annotate | Download | only in calendar

Lines Matching defs:args

157      * @param args OperationInfo object describing the operation
159 static public void queueOperation(Context context, OperationInfo args) {
161 args.calculateScheduledTime();
164 sWorkQueue.add(args);
244 OperationInfo args;
268 args = sWorkQueue.poll();
269 if (args != null) {
277 Log.d(TAG, "onHandleIntent: " + args);
280 ContentResolver resolver = args.resolver;
283 switch (args.op) {
287 cursor = resolver.query(args.uri, args.projection, args.selection,
288 args.selectionArgs, args.orderBy);
302 args.result = cursor;
306 args.result = resolver.insert(args.uri, args.values);
310 args.result = resolver.update(args.uri, args.values, args.selection,
311 args.selectionArgs);
316 args.result = resolver.delete(args.uri, args.selection, args.selectionArgs);
320 args.result = 0;
327 args.result = resolver.applyBatch(args.authority, args.cpo);
330 args.result = null;
333 args.result = null;
342 Message reply = args.handler.obtainMessage(args.token);
343 reply.obj = args;
344 reply.arg1 = args.op;
347 Log.d(TAG, "onHandleIntent: op=" + Operation.opToChar(args.op) + ", token="