HomeSort by relevance Sort by last modified time
    Searched refs:TABLE_ACCOUNTS (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/accounts/
AccountManagerService.java 104 private static final String TABLE_ACCOUNTS = "accounts";
139 + "SELECT COUNT(*) FROM " + TABLE_GRANTS + ", " + TABLE_ACCOUNTS
236 Cursor cursor = db.query(TABLE_ACCOUNTS,
248 db.delete(TABLE_ACCOUNTS, ACCOUNTS_ID + "=" + accountId, null);
263 Cursor cursor = db.query(TABLE_ACCOUNTS,
273 db.delete(TABLE_ACCOUNTS, ACCOUNTS_ID + "=" + accountId, null);
302 Cursor cursor = db.query(TABLE_ACCOUNTS, new String[]{ACCOUNTS_PASSWORD},
372 Cursor cursor = db.query(TABLE_ACCOUNTS, ACCOUNT_NAME_TYPE_PROJECTION,
416 "select count(*) from " + TABLE_ACCOUNTS
426 long accountId = db.insert(TABLE_ACCOUNTS, ACCOUNTS_NAME, values)
    [all...]
  /packages/apps/IM/src/com/android/im/provider/
ImpsProvider.java 51 private static final String TABLE_ACCOUNTS = "accounts";
262 db.execSQL("CREATE TABLE " + TABLE_ACCOUNTS + " (" +
305 "DELETE ON " + TABLE_ACCOUNTS +
480 db.execSQL("DROP TABLE IF EXISTS " + TABLE_ACCOUNTS);
    [all...]

Completed in 1283 milliseconds