Searched defs:TABLE_AUTHTOKENS (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java111 private static final String TABLE_AUTHTOKENS = "authtokens"; field in class:AccountManagerService
600 "SELECT " + TABLE_AUTHTOKENS + "." + AUTHTOKENS_ID
602 + ", " + TABLE_AUTHTOKENS + "." + AUTHTOKENS_TYPE
604 + " JOIN " + TABLE_AUTHTOKENS
615 db.delete(TABLE_AUTHTOKENS, AUTHTOKENS_ID + "=" + authTokenId, null);
634 db.delete(TABLE_AUTHTOKENS,
641 if (db.insert(TABLE_AUTHTOKENS, AUTHTOKENS_AUTHTOKEN, values) >= 0) {
656 Cursor cursor = db.query(TABLE_AUTHTOKENS, new String[]{AUTHTOKENS_AUTHTOKEN},
719 db.delete(TABLE_AUTHTOKENS, AUTHTOKENS_ACCOUNTS_ID + "=?", argsAccountId);
1504 db.execSQL("CREATE TABLE " + TABLE_AUTHTOKENS
[all...]

Completed in 35 milliseconds