Lines Matching refs:table
110 return "vnd.android.cursor.dir/" + args.table; in getType()
112 return "vnd.android.cursor.item/" + args.table; in getType()
131 qb.setTables(args.table); in query()
141 SQLiteDatabase db, String table, String nullColumnHack, ContentValues values) { in dbInsertAndCheck() argument
148 helper.checkId(table, values); in dbInsertAndCheck()
149 return db.insert(table, nullColumnHack, values); in dbInsertAndCheck()
174 final long rowId = dbInsertAndCheck(mOpenHelper, db, args.table, null, initialValues); in insert()
208 if (dbInsertAndCheck(mOpenHelper, db, args.table, null, values[i]) < 0) { in bulkInsert()
242 int count = db.delete(args.table, args.where, args.args); in delete()
255 int count = db.update(args.table, values, args.where, args.args); in update()
977 public void checkId(String table, ContentValues values) { in checkId() argument
979 if (table == LauncherProvider.TABLE_WORKSPACE_SCREENS) { in checkId()
1420 @Thunk static long getMaxId(SQLiteDatabase db, String table) { in getMaxId() argument
1421 Cursor c = db.rawQuery("SELECT MAX(_id) FROM " + table, null); in getMaxId()
1432 throw new RuntimeException("Error: could not query max id in " + table); in getMaxId()
1439 public final String table; field in LauncherProvider.SqlArguments
1445 this.table = url.getPathSegments().get(0); in SqlArguments()
1453 this.table = url.getPathSegments().get(0); in SqlArguments()
1461 table = url.getPathSegments().get(0); in SqlArguments()