/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
DatabaseTracker.h | 62 void getOpenDatabases(SecurityOrigin*, const String& name, HashSet<RefPtr<DatabaseBackendBase> >* databases);
|
/external/chromium_org/webkit/browser/database/ |
database_tracker.cc | 33 FILE_PATH_LITERAL("databases"); 35 FILE_PATH_LITERAL("databases-incognito"); 37 FILE_PATH_LITERAL("Databases.db"); 57 std::vector<base::string16>* databases) const { 60 databases->push_back(it->first); 196 // size of each open databases and notify any differences between the 228 std::set<base::string16>& databases = found_origin->second; local 229 databases.erase(database_name); 230 if (databases.empty()) { 401 // Create a temporary directory to move possibly still existing databases to 825 std::vector<base::string16> databases; local [all...] |
database_tracker.h | 48 // This class is used to store information about all databases in an origin. 57 void GetAllDatabaseNames(std::vector<base::string16>* databases) const; 73 // This class manages the main database and keeps track of open databases. 149 // Delete any databases that have been touched since the cutoff date that's 151 // Returns net::OK on success, net::FAILED if not all databases could be 158 // Delete all databases that belong to the given origin. Returns net::OK on 159 // success, net::FAILED if not all databases could be deleted, and 216 // Deletes session-only databases. Blocks databases from being created/opened. 262 // Schedule a set of open databases for deletion. If non-null, callback i [all...] |
/external/chromium/chrome/browser/ |
browsing_data_database_helper.cc | 99 std::vector<string16> databases; local 100 ori->GetAllDatabaseNames(&databases); 101 for (std::vector<string16>::const_iterator db = databases.begin(); 102 db != databases.end(); ++db) {
|
/external/chromium_org/chrome/browser/browsing_data/ |
browsing_data_database_helper.cc | 84 std::vector<base::string16> databases; local 85 ori->GetAllDatabaseNames(&databases); 86 for (std::vector<base::string16>::const_iterator db = databases.begin(); 87 db != databases.end(); ++db) {
|
/external/chromium_org/chrome/browser/content_settings/ |
local_shared_objects_container.h | 44 CannedBrowsingDataDatabaseHelper* databases() const { function in class:LocalSharedObjectsContainer
|
local_shared_objects_container.cc | 64 count += databases()->GetDatabaseCount(); 151 // Count databases for the domain of the given |origin|. 154 databases()->GetPendingDatabaseInfo(); 187 databases()->Clone(),
|
tab_specific_content_settings.cc | 405 blocked_local_shared_objects_.databases()->AddDatabase( 409 allowed_local_shared_objects_.databases()->AddDatabase(
|
/external/chromium/chrome/browser/tab_contents/ |
tab_specific_content_settings.h | 135 CannedBrowsingDataDatabaseHelper* databases() const { function in class:TabSpecificContentSettings::LocalSharedObjectsContainer
|
tab_specific_content_settings.cc | 187 blocked_local_shared_objects_.databases()->AddDatabase( 191 allowed_local_shared_objects_.databases()->AddDatabase(
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
Database.js | 150 databases: function()
|
ResourcesPanel.js | 62 this.databasesListTreeElement = new WebInspector.StorageCategoryTreeElement(this, WebInspector.UIString("Web SQL"), "Databases", ["database-storage-tree-item"]); 126 WebInspector.databaseModel.databases().forEach(this._addDatabase.bind(this)); [all...] |
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_context_impl.cc | 121 // Prime our cache of origins with existing databases so we can 185 // This ends up being O(n^2) since we iterate over all open databases 190 std::vector<IndexedDBDatabase*> databases = local 195 for (std::vector<IndexedDBDatabase*>::iterator it = databases.begin(); 196 it != databases.end(); 278 info->Set("databases", database_list.release()); 465 // Clearning only session-only databases, and there are none.
|
/external/chromium_org/tools/grit/grit/ |
tclib_unittest.py | 111 'Preferences: Preferences and selection of databases to index are\r\n' 115 'Reindexing: Selecting \'Reindex all databases\' will index all the \r\n' 136 'Only local databases can be indexed. If they can be determined, \r\n' 138 'list automatically. Mail archives and other databases must be \r\n'
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteDatabase.java | 72 // Stores reference to all databases opened in the current process. 126 // True if the database has attached databases. 239 * Write-ahead logging cannot be used with read-only databases so the value of 2029 ArrayList<SQLiteDatabase> databases = new ArrayList<SQLiteDatabase>(); local [all...] |
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaProvider.java | 112 * Separate databases are kept for each external storage card we see (using the 409 * For devices that have removable storage, we support keeping multiple databases 411 * On such devices, touch this particular database and garbage collect old databases. 412 * An LRU cache system is used to clean up databases for old external 434 // delete least recently used databases if we are over the limit 435 String[] databases = mContext.databaseList(); local 436 int count = databases.length; 439 // delete external databases that have not been used in the past two months 441 for (int i = 0; i < databases.length; i++) { 442 File other = mContext.getDatabasePath(databases[i]) [all...] |
/external/chromium_org/third_party/sqlite/src/tool/ |
spaceanal.tcl | 317 # Set $autovacuum to non-zero for databases that support auto-vacuum. 475 auto-vacuum. This is zero for databases that do not support auto-vacuum.
|
/external/chromium_org/chrome_frame/ |
CFInstance.js | 920 // HTML 5 databases [all...] |
/frameworks/base/docs/html/training/ |
training_toc.cs | 163 <li><a href="<?cs var:toroot ?>training/basics/data-storage/databases.html"> 164 Saving Data in SQL Databases [all...] |
/external/robolectric/lib/main/ |
h2-1.2.147.jar | |