HomeSort by relevance Sort by last modified time
    Searched refs:database (Results 1 - 25 of 1800) 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/cmockery/cmockery_0_1_2/src/example/
product_database.c 16 #include <database.h>
18 // Connect to the database containing customer information.
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseCallback.idl 30 boolean handleEvent(Database database);
SQLTransactionClient.cpp 36 #include "modules/webdatabase/Database.h"
46 static void databaseModified(Database* database)
50 createDatabaseIdentifierFromSecurityOrigin(database->securityOrigin()),
51 database->stringIdentifier());
55 void SQLTransactionClient::didCommitWriteTransaction(Database* database)
57 ExecutionContext* executionContext = database->databaseContext()->executionContext();
59 executionContext->postTask(createCrossThreadTask(&databaseModified, PassRefPtrWillBeRawPtr<Database>(database)));
    [all...]
ChangeVersionWrapper.cpp 31 #include "modules/webdatabase/Database.h"
46 ASSERT(transaction && transaction->database());
48 Database* 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)
72 Database* 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;
  /external/chromium_org/chrome/browser/extensions/activity_log/
hashed_ad_network_database_unittest.cc 35 AdNetworkDatabase* database() { return database_.get(); } function in class:extensions::HashedAdNetworkDatabaseUnitTest
47 // The database used in testing.
70 // Test that the logic for the Ad Network Database works. That is, the hashing
71 // scheme works, correctly reports when URLs are present in the database,
75 EXPECT_TRUE(database()->IsAdNetwork(GURL("http://alpha.adnetwork")));
76 EXPECT_TRUE(database()->IsAdNetwork(GURL("http://bravo.adnetwork")));
77 EXPECT_TRUE(database()->IsAdNetwork(GURL("http://charlie.delta.adnetwork")));
80 EXPECT_TRUE(database()->IsAdNetwork(GURL("http://alpha.adnetwork/foo")));
81 EXPECT_TRUE(database()->IsAdNetwork(GURL("http://bravo.adnetwork/foo/bar")));
83 database()->IsAdNetwork(GURL("http://charlie.delta.adnetwork/foo.html")))
109 HashedAdNetworkDatabase database; local
    [all...]
  /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 2565 milliseconds

1 2 3 4 5 6 7 8 91011>>