Home | History | Annotate | Download | only in calendar

Lines Matching refs:info

57      * Data class which holds into info of the queued operation
171 OperationInfo info = new OperationInfo();
172 info.op = Operation.EVENT_ARG_QUERY;
173 info.resolver = mContext.getContentResolver();
175 info.handler = mHandler;
176 info.token = token;
177 info.cookie = cookie;
178 info.uri = uri;
179 info.projection = projection;
180 info.selection = selection;
181 info.selectionArgs = selectionArgs;
182 info.orderBy = orderBy;
184 AsyncQueryServiceHelper.queueOperation(mContext, info);
203 OperationInfo info = new OperationInfo();
204 info.op = Operation.EVENT_ARG_INSERT;
205 info.resolver = mContext.getContentResolver();
206 info.handler = mHandler;
208 info.token = token;
209 info.cookie = cookie;
210 info.uri = uri;
211 info.values = initialValues;
212 info.delayMillis = delayMillis;
214 AsyncQueryServiceHelper.queueOperation(mContext, info);
239 OperationInfo info = new OperationInfo();
240 info.op = Operation.EVENT_ARG_UPDATE;
241 info.resolver = mContext.getContentResolver();
242 info.handler = mHandler;
244 info.token = token;
245 info.cookie = cookie;
246 info.uri = uri;
247 info.values = values;
248 info.selection = selection;
249 info.selectionArgs = selectionArgs;
250 info.delayMillis = delayMillis;
252 AsyncQueryServiceHelper.queueOperation(mContext, info);
276 OperationInfo info = new OperationInfo();
277 info.op = Operation.EVENT_ARG_DELETE;
278 info.resolver = mContext.getContentResolver();
279 info.handler = mHandler;
281 info.token = token;
282 info.cookie = cookie;
283 info.uri = uri;
284 info.selection = selection;
285 info.selectionArgs = selectionArgs;
286 info.delayMillis = delayMillis;
288 AsyncQueryServiceHelper.queueOperation(mContext, info);
307 OperationInfo info = new OperationInfo();
308 info.op = Operation.EVENT_ARG_BATCH;
309 info.resolver = mContext.getContentResolver();
310 info.handler = mHandler;
312 info.token = token;
313 info.cookie = cookie;
314 info.authority = authority;
315 info.cpo = cpo;
316 info.delayMillis = delayMillis;
318 AsyncQueryServiceHelper.queueOperation(mContext, info);
399 OperationInfo info = (OperationInfo) msg.obj;
406 + ", result=" + info.result);
412 info.cookie, (Cursor) info.result);
416 onInsertComplete(token, info.cookie, (Uri) info.result);
420 onUpdateComplete(token, info.cookie, (Integer) info.result);
424 onDeleteComplete(token, info.cookie, (Integer) info.result);
428 onBatchComplete(token, info.cookie, (ContentProviderResult[]) info.result);