• Home
  • Raw
  • Download

Lines Matching refs:info

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