Lines Matching refs:table
112 return "vnd.android.cursor.dir/" + args.table; in getType()
114 return "vnd.android.cursor.item/" + args.table; in getType()
124 qb.setTables(args.table); in query()
134 SQLiteDatabase db, String table, String nullColumnHack, ContentValues values) { in dbInsertAndCheck() argument
138 return db.insert(table, nullColumnHack, values); in dbInsertAndCheck()
144 db.delete(args.table, args.where, args.args); in deleteId()
152 final long rowId = dbInsertAndCheck(mOpenHelper, db, args.table, null, initialValues); in insert()
170 if (dbInsertAndCheck(mOpenHelper, db, args.table, null, values[i]) < 0) { in bulkInsert()
188 int count = db.delete(args.table, args.where, args.args); in delete()
199 int count = db.update(args.table, values, args.where, args.args); in update()
1280 public final String table; field in LauncherProvider.SqlArguments
1286 this.table = url.getPathSegments().get(0); in SqlArguments()
1294 this.table = url.getPathSegments().get(0); in SqlArguments()
1302 table = url.getPathSegments().get(0); in SqlArguments()