Searched defs:TABLE_AUTHTOKENS (Results 1 - 1 of 1) sorted by last modified time

/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java117 private static final String TABLE_AUTHTOKENS = "authtokens"; field in class:AccountManagerService
784 "SELECT " + TABLE_AUTHTOKENS + "." + AUTHTOKENS_ID
786 + ", " + TABLE_AUTHTOKENS + "." + AUTHTOKENS_TYPE
788 + " JOIN " + TABLE_AUTHTOKENS
799 db.delete(TABLE_AUTHTOKENS, AUTHTOKENS_ID + "=" + authTokenId, null);
823 db.delete(TABLE_AUTHTOKENS,
830 if (db.insert(TABLE_AUTHTOKENS, AUTHTOKENS_AUTHTOKEN, values) >= 0) {
911 db.delete(TABLE_AUTHTOKENS, AUTHTOKENS_ACCOUNTS_ID + "=?", argsAccountId);
1971 db.execSQL("CREATE TABLE " + TABLE_AUTHTOKENS + " ( "
1998 + " DELETE FROM " + TABLE_AUTHTOKENS
[all...]

Completed in 9 milliseconds