Lines Matching refs:cookie
169 public void startQuery(int token, Object cookie, Uri uri, String[] projection, in startQuery() argument
177 info.cookie = cookie; in startQuery()
201 public void startInsert(int token, Object cookie, Uri uri, ContentValues initialValues, in startInsert() argument
209 info.cookie = cookie; in startInsert()
237 public void startUpdate(int token, Object cookie, Uri uri, ContentValues values, in startUpdate() argument
245 info.cookie = cookie; in startUpdate()
274 public void startDelete(int token, Object cookie, Uri uri, String selection, in startDelete() argument
282 info.cookie = cookie; in startDelete()
305 public void startBatch(int token, Object cookie, String authority, in startBatch() argument
313 info.cookie = cookie; 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
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()