Lines Matching refs:token
69 public int token; field in AsyncQueryService.Operation
104 builder.append(token); in toString()
142 public final int cancelOperation(int token) { in cancelOperation() argument
143 return AsyncQueryServiceHelper.cancelOperation(token); in cancelOperation()
169 public void startQuery(int token, Object cookie, Uri uri, String[] projection, in startQuery() argument
176 info.token = token; in startQuery()
201 public void startInsert(int token, Object cookie, Uri uri, ContentValues initialValues, in startInsert() argument
208 info.token = token; in startInsert()
237 public void startUpdate(int token, Object cookie, Uri uri, ContentValues values, in startUpdate() argument
244 info.token = token; in startUpdate()
274 public void startDelete(int token, Object cookie, Uri uri, String selection, in startDelete() argument
281 info.token = token; in startDelete()
305 public void startBatch(int token, Object cookie, String authority, in startBatch() argument
312 info.token = token; in startBatch()
329 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { in onQueryComplete() argument
344 protected void onInsertComplete(int token, Object cookie, Uri uri) { in onInsertComplete() argument
359 protected void onUpdateComplete(int token, Object cookie, int result) { in onUpdateComplete() argument
374 protected void onDeleteComplete(int token, Object cookie, int result) { in onDeleteComplete() argument
391 protected void onBatchComplete(int token, Object cookie, ContentProviderResult[] results) { in onBatchComplete() argument
401 int token = msg.what; in handleMessage() local
405 Log.d(TAG, "AsyncQueryService.handleMessage: token=" + token + ", op=" + op 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()