Searched refs:db (Results 1 - 25 of 43) sorted by relevance

12

/frameworks/compile/mclinker/lib/Support/
H A DDemangle.cpp45 Db db(a);
46 db.cv = 0;
47 db.ref = 0;
48 db.encoding_depth = 0;
49 db.parsed_ctor_dtor_cv = false;
50 db.tag_templates = true;
51 db.template_param.emplace_back(a);
52 db.fix_forward_references = false;
53 db.try_to_parse_template_args = true;
55 demangle(pName, pName + pLength, db, internal_statu
[all...]
/frameworks/base/core/java/android/database/sqlite/
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 DSQLiteQuery.java36 SQLiteQuery(SQLiteDatabase db, String query, CancellationSignal cancellationSignal) { argument
37 super(db, query, null, cancellationSignal);
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 DSQLiteDirectCursorDriver.java35 public SQLiteDirectCursorDriver(SQLiteDatabase db, String sql, String editTable, argument
37 mDatabase = db;
H A DSQLiteStatement.java30 SQLiteStatement(SQLiteDatabase db, String sql, Object[] bindArgs) { argument
31 super(db, sql, bindArgs, null);
/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/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/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/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/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/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/packages/SystemUI/src/com/android/systemui/recents/views/
H A DRecentsViewLayoutAlgorithm.java50 Rect db = stack.displayBounds;
52 bounds.add(new Rect(getRelativeCoordinate(ab.left, ab.width(), sb.left, db.width()),
53 getRelativeCoordinate(ab.top, ab.height(), sb.top, db.height()),
54 getRelativeCoordinate(ab.left, ab.width(), sb.right, db.width()),
55 getRelativeCoordinate(ab.top, ab.height(), sb.bottom, db.height())));
/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/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/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/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/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/jni/
H A Dandroid_database_SQLiteConnection.cpp82 sqlite3* const db; member in struct:android::SQLiteConnection
89 SQLiteConnection(sqlite3* db, int openFlags, const String8& path, const String8& label) : argument
90 db(db), openFlags(openFlags), path(path), label(label), canceled(false) { }
133 sqlite3* db; local
134 int err = sqlite3_open_v2(path.string(), &db, sqliteFlags, NULL);
141 if ((sqliteFlags & SQLITE_OPEN_READWRITE) && sqlite3_db_readonly(db, NULL)) {
142 throw_sqlite3_exception(env, db, "Could not open the database in read/write mode.");
143 sqlite3_close(db);
148 err = sqlite3_busy_timeout(db, BUSY_TIMEOUT_M
[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/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java118 private static final String DATABASE_NAME = "accounts.db";
379 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
381 Cursor cursor = db.query(TABLE_ACCOUNTS,
396 db.delete(TABLE_ACCOUNTS, ACCOUNTS_ID + "=" + accountId, null);
399 logRecord(db, DebugDbHelper.ACTION_AUTHENTICATOR_REMOVE, TABLE_ACCOUNTS,
465 final SQLiteDatabase db = accounts.openHelper.getWritableDatabase();
466 final Cursor cursor = db.query(TABLE_GRANTS,
478 db.delete(TABLE_GRANTS, GRANTS_GRANTEE_UID + "=?",
561 final SQLiteDatabase db = accounts.openHelper.getReadableDatabase();
562 Cursor cursor = db
985 insertExtraLocked(SQLiteDatabase db, long accountId, String key, String value) argument
1444 invalidateAuthTokenLocked(UserAccounts accounts, SQLiteDatabase db, String accountType, String authToken) argument
2838 getAccountIdFromSharedTable(SQLiteDatabase db, Account account) argument
2851 getAccountIdLocked(SQLiteDatabase db, Account account) argument
2864 getExtrasIdLocked(SQLiteDatabase db, long accountId, String key) argument
3308 createDebugTable(SQLiteDatabase db) argument
3333 logRecord(SQLiteDatabase db, String action, String tableName, long accountId, UserAccounts userAccount) argument
3341 logRecord(SQLiteDatabase db, String action, String tableName, long accountId, UserAccounts userAccount, int callingUid) argument
3360 initializeDebugDbSizeAndCompileSqlStatementForLogging(SQLiteDatabase db, UserAccounts userAccount) argument
3373 compileSqlStatementForLogging(SQLiteDatabase db, UserAccounts userAccount) argument
3379 getDebugTableRowCount(SQLiteDatabase db) argument
3388 getDebugTableInsertionPoint(SQLiteDatabase db) argument
3413 onCreate(SQLiteDatabase db) argument
3450 createSharedAccountsTable(SQLiteDatabase db) argument
3458 addLastSuccessfullAuthenticatedTimeColumn(SQLiteDatabase db) argument
3463 addOldAccountNameColumn(SQLiteDatabase db) argument
3467 addDebugTable(SQLiteDatabase db) argument
3471 createAccountsDeletionTrigger(SQLiteDatabase db) argument
3484 createGrantsTable(SQLiteDatabase db) argument
3494 onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) argument
3542 onOpen(SQLiteDatabase db) argument
4148 writeUserDataIntoCacheLocked(UserAccounts accounts, final SQLiteDatabase db, Account account, String key, String value) argument
4174 writeAuthTokenIntoCacheLocked(UserAccounts accounts, final SQLiteDatabase db, Account account, String key, String value) argument
4215 readUserDataForAccountFromDatabaseLocked( final SQLiteDatabase db, Account account) argument
4235 readAuthTokensForAccountFromDatabaseLocked( final SQLiteDatabase db, Account account) 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/tests/coretests/src/android/database/
H A DDatabaseErrorHandlerTest.java35 private static final String DB_NAME = "database_test.db";
79 * this test used to produce a corrupted db. but with new sqlite it instead reports
81 * need to figure out how to cause corruption in db
94 SQLiteDatabase db = SQLiteDatabase.openOrCreateDatabase(mDatabaseFile.getPath(), null,
96 assertTrue(db.isDatabaseIntegrityOk());

Completed in 654 milliseconds

12