Searched refs:database (Results 51 - 75 of 242) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DSQLTransactionCoordinator.cpp42 DatabaseBackend* database = transaction->database(); local
43 ASSERT(database);
44 return database->stringIdentifier();
124 // Notify all transactions in progress that the database thread is shutting down
H A DDatabaseClient.cpp60 void DatabaseClient::didOpenDatabase(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version) argument
63 m_inspectorAgent->didOpenDatabase(database, domain, name, version);
H A DDatabaseContext.h87 explicit DatabaseCloser(DatabaseBackendBase& database) : m_database(database) { } argument
99 bool m_hasOpenDatabases; // This never changes back to false, even after the database thread is closed.
H A DSQLTransactionBackendSync.h60 DatabaseSync* database() { return m_database.get(); } function in class:WebCore::SQLTransactionBackendSync
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DHRTFDatabaseLoader.h55 // Returns true once the default database has been completely loaded.
61 HRTFDatabase* database() { return m_hrtfDatabase.get(); } function in class:WebCore::HRTFDatabaseLoader
72 // If it hasn't already been loaded, creates a new thread and initiates asynchronous loading of the default database.
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DresourcesPanel.css154 .database-query-prompt {
163 .database-user-query::before,
164 .database-query-prompt::before,
165 .database-query-result::before {
180 .database-user-query::before,
181 .database-query-prompt::before,
182 .database-query-result::before {
187 .database-query-prompt::before {
191 .database-user-query {
198 .database
[all...]
H A DindexedDBViews.css31 .indexed-db-database-view {
36 .indexed-db-database-view .outline-disclosure {
40 .indexed-db-database-view .outline-disclosure li {
44 .indexed-db-database-view .outline-disclosure .attribute-name {
52 .indexed-db-database-view .outline-disclosure .attribute-value {
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDatabase.cpp96 WebDatabase::WebDatabase(const DatabaseBackendBase* database) argument
97 : m_database(database)
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowDatabaseUtils.java3 import android.database.DatabaseUtils;
4 import android.database.sqlite.SQLiteProgram;
H A DShadowMatrixCursor.java6 import android.database.CursorIndexOutOfBoundsException;
7 import android.database.MatrixCursor;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DSQLiteDatabaseTest.java37 long replaceId = database.replace("table_name", null, values);
40 Statement statement = shadowOf(database).getConnection().createStatement();
H A DPagerAdapterTest.java3 import android.database.DataSetObserver;
/external/svox/pico/src/com/svox/pico/providers/
H A DSettingsProvider.java20 import android.database.Cursor;
21 import android.database.MatrixCursor;
/external/chromium_org/chromeos/
H A Dcert_loader_unittest.cc93 // Finishes initialization for the |user| and returns a user's NSS database
97 scoped_ptr<net::NSSCertDatabaseChromeOS>* database) {
108 database->reset(new net::NSSCertDatabaseChromeOS(
111 (*database)->SetSlowTaskRunnerForTest(message_loop_.message_loop_proxy());
119 net::NSSCertDatabase* database,
121 ASSERT_TRUE(database);
132 ASSERT_TRUE(database->ImportCACerts(*imported_certs,
139 net::NSSCertDatabase* database,
141 ASSERT_TRUE(database);
151 database
95 FinishUserInitAndGetDatabase( crypto::ScopedTestNSSChromeOSUser* user, scoped_ptr<net::NSSCertDatabaseChromeOS>* database) argument
118 ImportCACert(const std::string& cert_file, net::NSSCertDatabase* database, net::CertificateList* imported_certs) argument
138 ImportClientCertAndKey(const std::string& pkcs12_file, net::NSSCertDatabase* database, net::CertificateList* imported_certs) argument
[all...]
/external/chromium_org/webkit/browser/quota/
H A Dquota_manager.cc107 QuotaDatabase* database) {
108 DCHECK(database);
109 if (!database->SetQuotaConfigValue(
119 QuotaDatabase* database) {
120 DCHECK(database);
121 database->GetHostQuota(host, kStorageTypePersistent, quota);
127 QuotaDatabase* database) {
128 DCHECK(database);
129 if (database->SetHostQuota(host, kStorageTypePersistent, *new_quota))
137 QuotaDatabase* database) {
106 SetTemporaryGlobalOverrideQuotaOnDBThread(int64* new_quota, QuotaDatabase* database) argument
117 GetPersistentHostQuotaOnDBThread(const std::string& host, int64* quota, QuotaDatabase* database) argument
125 SetPersistentHostQuotaOnDBThread(const std::string& host, int64* new_quota, QuotaDatabase* database) argument
135 InitializeOnDBThread(int64* temporary_quota_override, int64* desired_available_space, QuotaDatabase* database) argument
146 GetLRUOriginOnDBThread(StorageType type, std::set<GURL>* exceptions, SpecialStoragePolicy* policy, GURL* url, QuotaDatabase* database) argument
156 DeleteOriginInfoOnDBThread(const GURL& origin, StorageType type, QuotaDatabase* database) argument
163 InitializeTemporaryOriginsInfoOnDBThread(const std::set<GURL>* origins, QuotaDatabase* database) argument
177 UpdateAccessTimeOnDBThread(const GURL& origin, StorageType type, base::Time accessed_time, QuotaDatabase* database) argument
185 UpdateModifiedTimeOnDBThread(const GURL& origin, StorageType type, base::Time modified_time, QuotaDatabase* database) argument
715 GetModifiedSinceOnDBThread(StorageType type, base::Time modified_since, QuotaDatabase* database) argument
741 DumpQuotaTableOnDBThread(QuotaDatabase* database) argument
770 DumpOriginInfoTableOnDBThread(QuotaDatabase* database) argument
[all...]
/external/chromium_org/chrome/browser/diagnostics/
H A Dsqlite_diagnostics.cc26 #include "webkit/browser/database/database_tracker.h"
32 // Generic diagnostic test class for checking SQLite database integrity.
56 LOG(WARNING) << "Removing broken SQLite database: "
95 { // Scope the statement and database so they close properly.
96 sql::Connection database; variable
97 database.set_exclusive_locking();
101 // build for a corrupted database. Without setting the error callback,
103 database.set_error_callback(
106 &database));
107 if (!database
[all...]
/external/chromium_org/chrome/browser/chromeos/policy/
H A Duser_network_configuration_updater.cc149 net::NSSCertDatabase* database) {
150 DCHECK(database);
152 new chromeos::onc::CertificateImporterImpl(database)));
148 CreateAndSetCertificateImporter( net::NSSCertDatabase* database) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DDatabase.js176 * @param {!WebInspector.Database} database
178 _addDatabase: function(database)
180 this._databases.push(database);
181 this.dispatchEventToListeners(WebInspector.DatabaseModel.Events.DatabaseAdded, database);
/external/chromium_org/chrome/browser/webdata/
H A Dweb_apps_table.h17 // This class manages the WebApps tables within the SQLite database passed to
20 // Note: The database stores time in seconds, UTC.
37 // Retrieves the WebAppsTable* owned by |database|.
38 static WebAppsTable* FromWebDatabase(WebDatabase* database);
49 // database error. In this case, the state of images is undefined; it may have
/external/cmockery/cmockery_0_1_2/src/example/
H A Dcustomer_database_test.c20 #include <database.h>
26 // Mock query database function.
34 // Mock of the connect to database function.
H A Dproduct_database_test.c20 #include <database.h>
24 /* Mock connect to database function.
26 * that use the imaginary database.h module. */
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_storage.h233 ServiceWorkerDatabase* database,
237 ServiceWorkerDatabase* database,
243 ServiceWorkerDatabase* database,
249 ServiceWorkerDatabase* database,
254 ServiceWorkerDatabase* database,
259 ServiceWorkerDatabase* database,
271 // Pending database tasks waiting for initialization.
/external/sepolicy/
H A Daccess_vectors83 # Define a common prefix for userspace database object access vectors.
86 common database
754 inherits database
764 inherits database
775 inherits database
783 inherits database
803 inherits database
843 inherits database
851 inherits database
857 inherits database
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
H A DResourcesPanel.js45 WebInspector.ResourcesPanel = function(database)
58 this.databasesListTreeElement = new WebInspector.StorageCategoryTreeElement(this, WebInspector.UIString("Web SQL"), "Databases", ["database-storage-tree-item"]);
319 var database = /** @type {!WebInspector.Database} */ (event.data);
320 this._addDatabase(database);
324 * @param {!WebInspector.Database} database
326 _addDatabase: function(database)
328 var databaseTreeElement = new WebInspector.DatabaseTreeElement(this, database);
329 this._databaseTreeElements.put(database, databaseTreeElement);
399 * @param {!WebInspector.Database} database
401 selectDatabase: function(database)
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_dispatcher_host.cc32 #include "webkit/browser/database/database_util.h"
33 #include "webkit/common/database/database_identifier.h"
301 // TODO(dgrogan): Don't let a non-existing database be opened (and therefore
443 connection->database()->Abort(
508 connection->database()->CreateObjectStore(host_transaction_id,
515 connection->database()->Abort(
532 connection->database()->DeleteObjectStore(
553 connection->database()->CreateTransaction(
595 connection->database()->Get(
667 connection->database()
[all...]

Completed in 874 milliseconds

12345678910