HomeSort by relevance Sort by last modified time
    Searched refs:database (Results 1 - 25 of 1636) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/database/
CursorWindow.aidl 17 package android.database;
DataSetObserver.java 17 package android.database;
DatabaseErrorHandler.java 17 package android.database;
19 import android.database.sqlite.SQLiteDatabase;
23 * database corruption
28 * defines the method to be invoked when database corruption is detected.
29 * @param dbObj the {@link SQLiteDatabase} object representing the database on which corruption
CursorWindowAllocationException.java 17 package android.database;
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseCallback.idl 30 boolean handleEvent(Database database);
31 boolean handleEvent(DatabaseSync database);
SQLTransactionClient.cpp 45 static void databaseModified(DatabaseBackendBase* database)
49 createDatabaseIdentifierFromSecurityOrigin(database->securityOrigin()),
50 database->stringIdentifier());
54 void SQLTransactionClient::didCommitWriteTransaction(DatabaseBackendBase* database)
56 ExecutionContext* executionContext = database->databaseContext()->executionContext();
58 executionContext->postTask(bind(&databaseModified, PassRefPtr<DatabaseBackendBase>(database)));
62 databaseModified(database);
65 bool SQLTransactionClient::didExceedQuota(DatabaseBackendBase* database)
69 ASSERT(database->databaseContext()->executionContext()->isContextThread());
ChangeVersionWrapper.cpp 31 #include "modules/webdatabase/Database.h"
46 ASSERT(transaction && transaction->database());
48 DatabaseBackend* database = transaction->database(); local
51 if (!database->getVersionFromDatabase(actualVersion)) {
52 int sqliteError = database->sqliteDatabase().lastError();
53 database->reportChangeVersionResult(1, SQLError::UNKNOWN_ERR, sqliteError);
55 sqliteError, database->sqliteDatabase().lastErrorMsg());
60 database->reportChangeVersionResult(2, SQLError::VERSION_ERR, 0);
61 m_sqlError = SQLError::create(SQLError::VERSION_ERR, "current version of the database and `oldVersion` argument do not match")
72 DatabaseBackend* database = transaction->database(); local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteOpenHelper.java 4 import android.database.sqlite.SQLiteDatabase;
5 import android.database.sqlite.SQLiteDatabase.CursorFactory;
6 import android.database.sqlite.SQLiteOpenHelper;
20 private static SQLiteDatabase database; field in class:ShadowSQLiteOpenHelper
23 if (database != null) {
24 database.close();
26 database = null;
31 if (database != null) {
32 database.close();
34 database = null
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteStatementInfo.java 17 package android.database.sqlite;
SQLiteTransactionListener.java 17 package android.database.sqlite;
SQLiteException.java 17 package android.database.sqlite;
19 import android.database.SQLException;
DatabaseObjectNotClosedException.java 17 package android.database.sqlite;
20 * An exception that indicates that garbage-collector is finalizing a database object
25 private static final String s = "Application did not close the cursor or database object " +
SQLiteAbortException.java 17 package android.database.sqlite;
SQLiteAccessPermException.java 17 package android.database.sqlite;
20 * This exception class is used when sqlite can't access the database file
  /external/ganymed-ssh2/examples/
SimpleVerifier.java 10 KnownHosts database; field in class:SimpleVerifier
16 public SimpleVerifier(KnownHosts database)
18 if (database == null)
21 this.database = database;
27 int result = database.verifyHostkey(hostname, serverHostKeyAlgorithm, serverHostKey);
42 database.addHostkey(new String[] { hostname }, serverHostKeyAlgorithm, serverHostKey);
49 // Better: ask user and add new key to database.
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
SQLiteOpenHelperTest.java 5 import android.database.sqlite.SQLiteDatabase;
6 import android.database.sqlite.SQLiteDatabase.CursorFactory;
7 import android.database.sqlite.SQLiteOpenHelper;
30 SQLiteDatabase database = helper.getReadableDatabase(); local
31 assertInitialDB(database);
36 SQLiteDatabase database = helper.getReadableDatabase(); local
38 database = helper.getReadableDatabase();
40 assertSubsequentDB(database);
53 SQLiteDatabase database = helper.getWritableDatabase(); local
54 assertInitialDB(database);
75 SQLiteDatabase database = helper.getWritableDatabase(); local
    [all...]
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteAbortExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteAbortException;
SQLiteConstraintExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteConstraintException;
SQLiteDatabaseCorruptExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteDatabaseCorruptException;
SQLiteDiskIOExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteDiskIOException;
SQLiteDoneExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteDoneException;
SQLiteExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteException;
SQLiteFullExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteFullException;
SQLiteMisuseExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteMisuseException;
SQLiteQueryTest.java 17 package android.database.sqlite.cts;

Completed in 357 milliseconds

1 2 3 4 5 6 7 8 91011>>