Searched defs:db (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/base/test-runner/src/android/test/
H A DDatabaseTestUtils.java34 * @param expectedDb the db that is known to have the correct schema
35 * @param db the db whose schema should be checked
37 public static void assertSchemaEquals(SQLiteDatabase expectedDb, SQLiteDatabase db) { argument
39 Set<String> schema = getSchemaSet(db);
43 private static Set<String> getSchemaSet(SQLiteDatabase db) { argument
46 Cursor entityCursor = db.rawQuery("SELECT sql FROM sqlite_master", null);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQuery.java36 SQLiteQuery(SQLiteDatabase db, String query, CancellationSignal cancellationSignal) { argument
37 super(db, query, null, cancellationSignal);
H A DSQLiteStatement.java30 SQLiteStatement(SQLiteDatabase db, String sql, Object[] bindArgs) { argument
31 super(db, sql, bindArgs, null);
H A DSQLiteDirectCursorDriver.java35 public SQLiteDirectCursorDriver(SQLiteDatabase db, String sql, String editTable, argument
37 mDatabase = db;
H A DSQLiteCursor.java70 * @param db a reference to a Database object that is already constructed
78 public SQLiteCursor(SQLiteDatabase db, SQLiteCursorDriver driver, argument
H A DSQLiteOpenHelper.java206 SQLiteDatabase db = mDatabase;
210 if (db != null) {
211 if (writable && db.isReadOnly()) {
212 db.reopenReadWrite();
215 db = SQLiteDatabase.create(null);
220 db = SQLiteDatabase.openDatabase(path, mFactory,
223 db = mContext.openOrCreateDatabase(mName, mEnableWriteAheadLogging ?
234 db = SQLiteDatabase.openDatabase(path, mFactory,
239 onConfigure(db);
241 final int version = db
311 onConfigure(SQLiteDatabase db) argument
319 onCreate(SQLiteDatabase db) argument
341 onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) argument
359 onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) argument
377 onOpen(SQLiteDatabase db) argument
[all...]
H A DSQLiteProgram.java40 SQLiteProgram(SQLiteDatabase db, String sql, Object[] bindArgs, argument
42 mDatabase = db;
58 db.getThreadSession().prepare(mSql,
59 db.getThreadDefaultConnectionFlags(assumeReadOnly),
H A DSQLiteQueryBuilder.java265 * @param db the database to query on
291 public Cursor query(SQLiteDatabase db, String[] projectionIn, argument
294 return query(db, projectionIn, selection, selectionArgs, groupBy, having, sortOrder,
302 * @param db the database to query on
330 public Cursor query(SQLiteDatabase db, String[] projectionIn, argument
333 return query(db, projectionIn, selection, selectionArgs,
341 * @param db the database to query on
372 public Cursor query(SQLiteDatabase db, String[] projectionIn, argument
389 validateQuerySql(db, sqlForValidation,
400 return db
410 validateQuerySql(SQLiteDatabase db, String sql, CancellationSignal cancellationSignal) argument
[all...]
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DAggregatorStorage.java44 public void onCreate(SQLiteDatabase db) { argument
45 db.execSQL(mTableCmd);
49 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { argument
53 db.execSQL("DROP TABLE IF EXISTS " + mTableName);
54 onCreate(db);
H A DBordeauxSessionStorage.java70 public void onCreate(SQLiteDatabase db) { argument
71 db.execSQL(DATABASE_CREATE);
75 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { argument
79 db.execSQL("DROP TABLE IF EXISTS " + SESSION_TABLE);
80 onCreate(db);
/frameworks/base/core/java/com/android/internal/content/
H A DSelectionBuilder.java99 public Cursor query(SQLiteDatabase db, String table, String[] columns, String orderBy) { argument
100 return query(db, table, columns, null, null, orderBy, null);
106 public Cursor query(SQLiteDatabase db, String table, String[] columns, String groupBy, argument
108 return db.query(table, columns, getSelection(), getSelectionArgs(), groupBy, having,
115 public int update(SQLiteDatabase db, String table, ContentValues values) { argument
116 return db.update(table, values, getSelection(), getSelectionArgs());
122 public int delete(SQLiteDatabase db, String table) { argument
123 return db.delete(table, getSelection(), getSelectionArgs());
/frameworks/base/core/java/com/android/server/
H A DBootReceiver.java97 final DropBoxManager db = (DropBoxManager) ctx.getSystemService(Context.DROPBOX_SERVICE);
112 if (recovery != null && db != null) {
113 db.addText("SYSTEM_RECOVERY_LOG", headers + recovery);
135 if (db != null) db.addText("SYSTEM_BOOT", headers);
138 addFileWithFootersToDropBox(db, prefs, headers, lastKmsgFooter,
140 addFileWithFootersToDropBox(db, prefs, headers, lastKmsgFooter,
143 addFileToDropBox(db, prefs, headers, "/cache/recovery/log",
145 addFileToDropBox(db, prefs, headers, "/cache/recovery/last_kmsg",
147 addAuditErrorsToDropBox(db, pref
181 addFileToDropBox( DropBoxManager db, SharedPreferences prefs, String headers, String filename, int maxSize, String tag) argument
188 addFileWithFootersToDropBox( DropBoxManager db, SharedPreferences prefs, String headers, String footers, String filename, int maxSize, String tag) argument
210 addAuditErrorsToDropBox(DropBoxManager db, SharedPreferences prefs, String headers, int maxSize, String tag) argument
243 addFsckErrorsToDropBox(DropBoxManager db, SharedPreferences prefs, String headers, int maxSize, String tag) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLocalProvider.java45 private static final String DATABASE_NAME = "local.db";
53 public void onCreate(SQLiteDatabase db) { argument
54 db.execSQL("CREATE TABLE data (" +
60 db.execSQL("INSERT INTO data (text, integer) VALUES ('first data', 100);");
64 public void onUpgrade(SQLiteDatabase db, int oldVersion, int currentVersion) { argument
68 db.execSQL("DROP TABLE IF EXISTS data");
69 onCreate(db);
103 SQLiteDatabase db = mOpenHelper.getReadableDatabase();
104 Cursor ret = qb.query(db, projectionIn, selection, selectionArgs,
134 SQLiteDatabase db
[all...]
/frameworks/base/core/tests/coretests/src/android/content/
H A DMemoryFileProvider.java63 private static final String DATABASE_NAME = "local.db";
71 public void onCreate(SQLiteDatabase db) { argument
72 db.execSQL("CREATE TABLE data (" +
82 db.insert("data", null, values);
86 public void onUpgrade(SQLiteDatabase db, int oldVersion, int currentVersion) { argument
90 db.execSQL("DROP TABLE IF EXISTS data");
91 onCreate(db);
158 SQLiteDatabase db = mOpenHelper.getReadableDatabase();
159 return DatabaseUtils.blobFileDescriptorForQuery(db, sql, null);
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseStatementTest.java45 mDatabaseFile = new File(dbDir, "database_test.db");
249 public StatementTestThread(SQLiteDatabase db, SQLiteStatement statement) { argument
251 mDatabase = db;
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DDatabaseHelper.java42 private static final String NAME = "sound_model.db";
74 public void onCreate(SQLiteDatabase db) { argument
76 db.execSQL(CREATE_TABLE_SOUND_MODEL);
80 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { argument
82 db.execSQL("DROP TABLE IF EXISTS " + SoundModelContract.TABLE);
83 onCreate(db);
93 SQLiteDatabase db = getWritableDatabase();
108 return db.insertWithOnConflict(SoundModelContract.TABLE, null, values,
111 db.close();
132 SQLiteDatabase db
[all...]
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerProvider.java40 private static final String DB_NAME = "tracking.db";
56 public void onCreate(SQLiteDatabase db) { argument
62 db.execSQL(queryBuilder.toString());
63 db.setVersion(DB_VERSION);
67 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { argument
72 db.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME);
73 onCreate(db);
87 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
88 int result = db.delete(TABLE_NAME, selection, selectionArgs);
100 SQLiteDatabase db
[all...]
/frameworks/ex/common/java/com/android/common/content/
H A DSyncStateContentProviderHelper.java54 public void createDatabase(SQLiteDatabase db) { argument
55 db.execSQL("DROP TABLE IF EXISTS " + SYNC_STATE_TABLE);
56 db.execSQL("CREATE TABLE " + SYNC_STATE_TABLE + " ("
64 db.execSQL("DROP TABLE IF EXISTS " + SYNC_STATE_META_TABLE);
65 db.execSQL("CREATE TABLE " + SYNC_STATE_META_TABLE + " ("
69 db.insert(SYNC_STATE_META_TABLE, SYNC_STATE_META_VERSION_COLUMN, values);
72 public void onDatabaseOpened(SQLiteDatabase db) { argument
73 long version = DatabaseUtils.longForQuery(db,
77 createDatabase(db);
81 public Cursor query(SQLiteDatabase db, Strin argument
87 insert(SQLiteDatabase db, ContentValues values) argument
91 delete(SQLiteDatabase db, String userWhere, String[] whereArgs) argument
95 update(SQLiteDatabase db, ContentValues values, String selection, String[] selectionArgs) argument
100 update(SQLiteDatabase db, long rowId, Object data) argument
113 onAccountsChanged(SQLiteDatabase db, Account[] accounts) argument
[all...]
/frameworks/base/core/java/android/content/
H A DSearchRecentSuggestionsProvider.java84 private static final String sDatabaseName = "suggestions.db";
137 public void onCreate(SQLiteDatabase db) { argument
148 db.execSQL(builder.toString());
152 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { argument
155 db.execSQL("DROP TABLE IF EXISTS suggestions");
156 onCreate(db);
226 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
236 count = db.delete(sSuggestions, selection, selectionArgs);
273 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
285 rowID = db
[all...]
/frameworks/base/core/jni/android/graphics/
H A DAvoidXfermode.cpp45 unsigned db = SkAbs32(SkGetPackedB16(c) - b); local
47 return SkMax32(dr, SkMax32(dg, db));
58 unsigned db = SkAbs32(SkGetPackedB32(c) - b); local
60 return SkMax32(dr, SkMax32(dg, db));
/frameworks/base/packages/WAPPushManager/src/com/android/smspush/
H A DWapPushManager.java53 private static final String DATABASE_NAME = "wappush.db";
73 public void onCreate(SQLiteDatabase db) { argument
74 if (LOCAL_LOGV) Log.v(LOG_TAG, "db onCreate.");
88 db.execSQL(sql);
92 public void onUpgrade(SQLiteDatabase db, argument
96 db.execSQL(
98 onCreate(db);
118 protected queryData queryLastApp(SQLiteDatabase db, argument
123 Cursor cur = db.query(APPID_TABLE_NAME,
186 SQLiteDatabase db
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRecentsProvider.java117 private static final String DB_NAME = "recents.db";
129 public void onCreate(SQLiteDatabase db) { argument
131 db.execSQL("CREATE TABLE " + TABLE_RECENT + " (" +
137 db.execSQL("CREATE TABLE " + TABLE_STATE + " (" +
147 db.execSQL("CREATE TABLE " + TABLE_RESUME + " (" +
156 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { argument
158 db.execSQL("DROP TABLE IF EXISTS " + TABLE_RECENT);
159 db.execSQL("DROP TABLE IF EXISTS " + TABLE_STATE);
160 db.execSQL("DROP TABLE IF EXISTS " + TABLE_RESUME);
161 onCreate(db);
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DDatabaseHelper.java77 private static final String DATABASE_NAME = "settings.db";
111 // The owner gets the unadorned db name;
160 private void createSecureTable(SQLiteDatabase db) { argument
161 db.execSQL("CREATE TABLE secure (" +
166 db.execSQL("CREATE INDEX secureIndex1 ON secure (name);");
169 private void createGlobalTable(SQLiteDatabase db) { argument
170 db.execSQL("CREATE TABLE global (" +
175 db.execSQL("CREATE INDEX globalIndex1 ON global (name);");
179 public void onCreate(SQLiteDatabase db) { argument
180 db
233 onUpgrade(SQLiteDatabase db, int oldVersion, int currentVersion) argument
1956 recreateDatabase(SQLiteDatabase db, int oldVersion, int upgradeVersion, int currentVersion) argument
1985 moveSettingsToNewTable(SQLiteDatabase db, String sourceTable, String destTable, String[] settingsToMove, boolean doIgnore) argument
2023 movePrefixedSettingsToNewTable( SQLiteDatabase db, String sourceTable, String destTable, String[] prefixesToMove) argument
2057 upgradeLockPatternLocation(SQLiteDatabase db) argument
2081 upgradeScreenTimeoutFromNever(SQLiteDatabase db) argument
2105 upgradeVibrateSettingFromNone(SQLiteDatabase db) argument
2127 upgradeScreenTimeout(SQLiteDatabase db) argument
2144 upgradeAutoBrightness(SQLiteDatabase db) argument
2163 loadBookmarks(SQLiteDatabase db) argument
2250 loadVolumeLevels(SQLiteDatabase db) argument
2302 loadVibrateSetting(SQLiteDatabase db, boolean deleteOld) argument
2325 loadVibrateWhenRingingSetting(SQLiteDatabase db) argument
2343 loadSettings(SQLiteDatabase db) argument
2352 loadSystemSettings(SQLiteDatabase db) argument
2429 loadSecureSettings(SQLiteDatabase db) argument
2552 loadGlobalSettings(SQLiteDatabase db) argument
2750 getIntValueFromSystem(SQLiteDatabase db, String name, int defaultValue) argument
2754 getIntValueFromTable(SQLiteDatabase db, String table, String name, int defaultValue) argument
2760 getStringValueFromTable(SQLiteDatabase db, String table, String name, String defaultValue) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsStorage.java108 public void writeKeyValue(SQLiteDatabase db, String key, String value, int userId) { argument
114 db.beginTransaction();
116 db.delete(TABLE, COLUMN_KEY + "=? AND " + COLUMN_USERID + "=?",
118 db.insert(TABLE, null, cv);
119 db.setTransactionSuccessful();
122 db.endTransaction();
138 SQLiteDatabase db = mOpenHelper.getReadableDatabase();
139 if ((cursor = db.query(TABLE, COLUMNS_FOR_QUERY,
163 SQLiteDatabase db = mOpenHelper.getReadableDatabase();
164 if ((cursor = db
444 initialize(SQLiteDatabase db) argument
461 createTable(SQLiteDatabase db) argument
471 onCreate(SQLiteDatabase db) argument
477 onUpgrade(SQLiteDatabase db, int oldVersion, int currentVersion) argument
[all...]
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java773 * @param db the database the table is in
777 public static long queryNumEntries(SQLiteDatabase db, String table) { argument
778 return queryNumEntries(db, table, null, null);
783 * @param db the database the table is in
790 public static long queryNumEntries(SQLiteDatabase db, String table, String selection) { argument
791 return queryNumEntries(db, table, selection, null);
796 * @param db the database the table is in
807 public static long queryNumEntries(SQLiteDatabase db, String table, String selection, argument
810 return longForQuery(db, "select count(*) from " + table + s,
816 * @param db th
821 queryIsEmpty(SQLiteDatabase db, String table) argument
830 longForQuery(SQLiteDatabase db, String query, String[] selectionArgs) argument
852 stringForQuery(SQLiteDatabase db, String query, String[] selectionArgs) argument
876 blobFileDescriptorForQuery(SQLiteDatabase db, String query, String[] selectionArgs) argument
1033 InsertHelper(SQLiteDatabase db, String tableName) argument
[all...]

Completed in 638 milliseconds

12