Lines Matching defs:token
69 public int token; field in AsyncQueryService.Operation
142 public final int cancelOperation(int token) { in cancelOperation()
169 public void startQuery(int token, Object cookie, Uri uri, String[] projection, in startQuery()
201 public void startInsert(int token, Object cookie, Uri uri, ContentValues initialValues, in startInsert()
237 public void startUpdate(int token, Object cookie, Uri uri, ContentValues values, in startUpdate()
274 public void startDelete(int token, Object cookie, Uri uri, String selection, in startDelete()
305 public void startBatch(int token, Object cookie, String authority, in startBatch()
329 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { in onQueryComplete()
344 protected void onInsertComplete(int token, Object cookie, Uri uri) { in onInsertComplete()
359 protected void onUpdateComplete(int token, Object cookie, int result) { in onUpdateComplete()
374 protected void onDeleteComplete(int token, Object cookie, int result) { in onDeleteComplete()
391 protected void onBatchComplete(int token, Object cookie, ContentProviderResult[] results) { in onBatchComplete()
401 int token = msg.what; in handleMessage() local