HomeSort by relevance Sort by last modified time
    Searched full:database (Results 201 - 225 of 2668) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/luni/src/main/java/javax/sql/
RowSetMetaData.java 49 * if a problem occurs accessing the database.
65 * if a problem occurs accessing the database.
79 * if a problem occurs accessing the database.
90 * if a problem occurs accessing the database.
104 * if a problem occurs accessing the database.
119 * if a problem occurs accessing the database.
133 * if a problem occurs accessing the database.
147 * if a problem occurs accessing the database.
162 * if a problem occurs accessing the database.
179 * if a problem occurs accessing the database
    [all...]
  /external/chromium/chrome/browser/password_manager/
login_database.h 18 // Interface to the database storage of login information, intended as a helper
26 // Initialize the database with an sqlite file at the given path.
71 // Deletes the login database file on disk, and creates a new, empty database.
73 // that SQLite doesn't leave fragments of passwords in the database file.
75 // whether further use of this login database will succeed is unspecified.
  /external/e2fsprogs/lib/et/test_cases/
heimdal2.c 23 "Could not find service name in services database",
29 "Entry already exists in database",
30 "Database store error",
31 "Database read error",
34 "No such entry in the database",
40 "Database is locked or in use--try again later",
  /external/webkit/Source/WebCore/inspector/
InjectedScriptHost.h 44 class Database;
66 #if ENABLE(DATABASE)
79 #if ENABLE(DATABASE)
104 #if ENABLE(DATABASE)
105 int databaseIdImpl(Database*);
124 #if ENABLE(DATABASE)
  /external/webkit/Source/WebCore/storage/
Database.h 32 #if ENABLE(DATABASE)
52 class Database : public AbstractDatabase {
54 virtual ~Database();
57 static PassRefPtr<Database> openDatabase(ScriptExecutionContext*, const String& name, const String& expectedVersion, const String& displayName,
91 Database(ScriptExecutionContext*, const String& name, const String& expectedVersion,
118 #endif // ENABLE(DATABASE)
OriginQuotaManager.cpp 31 #if ENABLE(DATABASE)
115 void OriginQuotaManager::markDatabase(AbstractDatabase* database)
117 ASSERT(database);
119 OriginUsageRecord* usageRecord = m_usageMap.get(database->securityOrigin());
122 usageRecord->markDatabase(database->stringIdentifier());
137 #endif // ENABLE(DATABASE)
SQLStatementSync.cpp 33 #if ENABLE(DATABASE)
58 SQLiteDatabase* database = &db->sqliteDatabase(); local
60 SQLiteStatement statement(*database, m_statement);
110 resultSet->setInsertId(database->lastInsertRowID());
120 resultSet->setRowsAffected(database->lastChanges());
126 #endif // ENABLE(DATABASE)
SQLTransaction.cpp 32 #if ENABLE(DATABASE)
34 #include "Database.h"
62 PassRefPtr<SQLTransaction> SQLTransaction::create(Database* db, PassRefPtr<SQLTransactionCallback> callback, PassRefPtr<SQLTransactionErrorCallback> errorCallback,
68 SQLTransaction::SQLTransaction(Database* db, PassRefPtr<SQLTransactionCallback> callback, PassRefPtr<SQLTransactionErrorCallback> errorCallback,
155 // If the database was stopped, don't do anything and cancel queued work
156 LOG(StorageAPI, "Database was stopped or interrupted - cancelling work for this transaction");
167 if (currentThread() != database()->scriptExecutionContext()->databaseThread()->getThreadID())
219 ASSERT(currentThread() == database()->scriptExecutionContext()->databaseThread()->getThreadID());
247 // If the database was deleted, jump to the error callback
249 m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "unable to open a transaction, because the user deleted the database");
    [all...]
DatabaseCallback.h 34 #if ENABLE(DATABASE)
40 class Database;
46 virtual bool handleEvent(Database*) = 0;
SQLTransactionCoordinator.h 34 #if ENABLE(DATABASE)
60 // Maps database names to information about pending transactions
68 #endif // ENABLE(DATABASE)
  /external/webkit/Source/WebKit/mac/Misc/
WebIconDatabasePrivate.h 34 // Sent when all icons are removed from the database. The object of the notification is
35 // the icon database. There is no userInfo. Clients should react by removing any cached
47 @discussion Returns true if the icon database is currently enabled, or false if it
54 @discussion Enables or disables the icon database based on the flag passed in.
55 @param flag Pass true to enable the icon database, or false to disable it.
61 @discussion Causes the icon database to delete all of the images that it has stored,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
utmpx.h 50 /* Open user accounting database.
56 /* Close user accounting database.
62 /* Get the next entry from the user accounting database.
68 /* Get the user accounting database entry corresponding to ID.
74 /* Get the user accounting database entry corresponding to LINE.
80 /* Write the entry UTMPX into the user accounting database.
  /cts/tests/tests/database/src/android/database/cts/
CursorIndexOutOfBoundsExceptionTest.java 17 package android.database.cts;
19 import android.database.CursorIndexOutOfBoundsException;
26 @TestTargetClass(android.database.CursorIndexOutOfBoundsException.class)
DataSetObservableTest.java 17 package android.database.cts;
19 import android.database.DataSetObservable;
20 import android.database.DataSetObserver;
27 @TestTargetClass(android.database.DataSetObservable.class)
MatrixCursor_RowBuilderTest.java 17 package android.database.cts;
23 import android.database.CursorIndexOutOfBoundsException;
24 import android.database.MatrixCursor;
25 import android.database.MatrixCursor.RowBuilder;
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 23 import android.database.Cursor;
24 import android.database.SQLException;
25 import android.database.sqlite.SQLiteDatabase;
26 import android.database.sqlite.SQLiteQueryBuilder;
67 // Database creation/version management helper.
83 Logger.getLogger("com.example.codelab.rssexample").info("DatabaseHelper.onCreate(): Created a database");
85 Logger.getLogger("com.example.codelab.rssexample").warning("DatabaseHelper.onCreate(): Couldn't create a database!");
92 // just drop the existing table, and recreate the database with the
101 // First we need to open the database. If this is our first time,
102 // the attempt to retrieve a database will thro
    [all...]
  /external/webkit/LayoutTests/storage/indexeddb/
database-basics-expected.txt 6 webkitIndexedDB.open('database-basics')
17 PASS db.name is "database-basics"
31 PASS db.name is "database-basics"
  /external/webkit/LayoutTests/storage/
private-browsing-noread-nowrite.html 92 var database = openDatabase("PrivateBrowsingNoReadNoWriteTest", "1.0", "Test private browsing no read/write safety", 1);
93 database.transaction(runSetup, endTest, endTest);
99 This test makes sure that attempts to change the database during private browsing fail.<br>
statement-error-callback.html 19 var database;
23 database.transaction(function(tx) {
64 database = openDatabase("StatementErrorCallbackTest", "1.0", "statement error callback test", 1024);
  /frameworks/base/core/java/android/database/sqlite/
SQLiteClosable.java 17 package android.database.sqlite;
19 import android.database.CursorWindow;
65 buff.append("database = ");
SQLiteCursorDriver.java 17 package android.database.sqlite;
19 import android.database.Cursor;
20 import android.database.sqlite.SQLiteDatabase.CursorFactory;
SQLiteDirectCursorDriver.java 17 package android.database.sqlite;
19 import android.database.Cursor;
20 import android.database.sqlite.SQLiteDatabase.CursorFactory;
  /frameworks/base/test-runner/src/android/test/
DatabaseTestUtils.java 21 import android.database.sqlite.SQLiteDatabase;
22 import android.database.Cursor;
27 * A collection of utilities for writing unit tests for database code.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
AbstractContactsProvider.java 25 import android.database.sqlite.SQLiteOpenHelper;
26 import android.database.sqlite.SQLiteTransactionListener;
33 * logic that SQLiteContentProvider does (i.e. starting transactions on the appropriate database),
34 * but exposes awareness of batch operations to the subclass so that cross-database operations
66 * The database helper to serialize all transactions on. If non-null, any new transaction
67 * created by this provider will automatically retrieve a writable database from this helper
68 * and initiate a transaction on that database. This should be used to ensure that operations
74 * The tag corresponding to the database used for serializing transactions.
91 * Specifies a database helper (and corresponding tag) to serialize all transactions on.
92 * @param serializeOnDbHelper The database helper to use for serializing transactions
    [all...]
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteCursorTest.java 17 package android.database.sqlite.cts;
26 import android.database.AbstractCursor;
27 import android.database.Cursor;
28 import android.database.CursorWindow;
29 import android.database.DataSetObserver;
30 import android.database.StaleDataException;
31 import android.database.sqlite.SQLiteCursor;
32 import android.database.sqlite.SQLiteDatabase;
33 import android.database.sqlite.SQLiteDirectCursorDriver;
71 args = {android.database.sqlite.SQLiteDatabase.class
    [all...]

Completed in 918 milliseconds

1 2 3 4 5 6 7 891011>>