HomeSort by relevance Sort by last modified time
    Searched full:database (Results 51 - 75 of 4506) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/webkit/browser/fileapi/
sandbox_origin_database_interface.h 29 // Returns true if the origin's path is included in this database.
32 // This will produce a unique path and add it to its database, if it's not
37 // Removes the origin's path from the database.
43 // Lists all origins in this database.
46 // This will release all database resources in use; call it to save memory.
  /frameworks/base/core/java/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
package.html 5 If you need to manage data in a private database, use the {@link
6 android.database.sqlite} classes. These classes are used to manage the {@link
7 android.database.Cursor} object returned from a content provider query. Databases
  /frameworks/base/core/java/android/database/sqlite/
package.html 3 Contains the SQLite database management
4 classes that an application would use to manage its own private database.
8 manage your own database to store content. See <a
14 these SQLite classes, but instead use the generic {@link android.database}
16 <p>Android ships with the sqlite3 database tool in the <code>tools/</code>
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 " +
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseManager.cpp 37 #include "modules/webdatabase/Database.h"
74 static PassOwnPtr<DatabaseCreationCallbackTask> create(PassRefPtr<Database> database, PassOwnPtr<DatabaseCallback> creationCallback)
76 return adoptPtr(new DatabaseCreationCallbackTask(database, creationCallback));
85 DatabaseCreationCallbackTask(PassRefPtr<Database> database, PassOwnPtr<DatabaseCallback> callback)
86 : m_database(database)
91 RefPtr<Database> m_database;
180 WTF_LOG(StorageAPI, "Database %s for origin %s not allowed to be established", name.ascii().data(),
216 PassRefPtr<Database> DatabaseManager::openDatabase(ExecutionContext* context
    [all...]
WorkerGlobalScopeWebDatabase.cpp 37 #include "modules/webdatabase/Database.h"
45 PassRefPtr<Database> WorkerGlobalScopeWebDatabase::openDatabase(WorkerGlobalScope* context, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState& exceptionState)
48 RefPtr<Database> database; local
52 database = dbManager.openDatabase(context, name, version, displayName, estimatedSize, creationCallback, error, errorMessage);
53 ASSERT(database || error != DatabaseError::None);
60 return database.release();
66 RefPtr<DatabaseSync> database; local
70 database = dbManager.openDatabaseSync(context, name, version, displayName, estimatedSize, creationCallback, error, errorMessage);
71 ASSERT(database || error != DatabaseError::None)
    [all...]
  /external/chromium/chrome/browser/ui/views/
database_open_info_view.h 15 // Responsible for displaying a tabular grid of Database information when
16 // prompting for permission to open a new database.
21 // Update the display from the specified Database data.
  /external/chromium_org/components/webdata/common/
web_data_service_backend.h 28 // WebDataServiceBackend handles all database tasks posted by
52 // Initializes the database and notifies caller via callback when complete.
56 // Opens the database file from the profile path if an init has not yet been
58 // of this object on one thread but database access on the DB thread. Returns
59 // the status of the database.
62 // Shuts down database. |should_reinit| tells us whether or not it should be
77 // Task runners to run database tasks.
86 WebDatabase* database() { return db_.get(); } function in class:WebDataServiceBackend
98 // Path to database file.
101 // The tables that participate in managing the database. These ar
    [all...]
  /external/chromium_org/content/test/data/indexeddb/
open_bad_db.js 6 request = webkitIndexedDB.open('database-basics');
22 debug("The pre-existing leveldb has an objectStore in 'database-basics',");
26 debug("database doesn't have a version.");
open_missing_table.js 6 request = webkitIndexedDB.open('database-basics');
23 debug("The pre-existing leveldb has an objectStore in 'database-basics',");
27 debug("database doesn't have a version.");
  /external/chromium_org/third_party/WebKit/ManualTests/inspector/
display-sql-null.html 3 var db = openDatabase("InspectorTest", "0.1", "Database for Inspector tests", 200000);
12 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=18837">Bug 18837: Database panel fails to display tables if any value is NULL</a>.</p>
17 <li>Click on the <code>DisplaySQLNull</code> table inside the <code>InspectorTest</code> database</li>
  /libcore/luni/src/test/java/libcore/sqlite/
OldExceptionTest.java 19 import SQLite.Database;
24 private Database db = null;
28 db = new Database();
  /external/chromium/chrome/browser/history/
archived_database.h 20 // Encapsulates the database operations for archived history.
23 // different than those in the main database. This is to eliminate the
32 // Initializes the database connection. This must return true before any other
36 // Transactions on the database. We support nested transactions and only
47 // database is too old to migrate, the user will be notified. In this case, or
55 // The database.
  /external/chromium_org/third_party/tlslite/tlslite/
SharedKeyDB.py 10 """This class represent an in-memory or on-disk database of shared
23 @param filename: Filename for an on-disk database, or None for
24 an in-memory database. If the filename already exists, follow
25 this with a call to open(). To create a new on-disk database,
36 """Add a shared key to the database.
41 not already be in the database.
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
MetaData.java 22 import android.database.Cursor;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
30 * values to avoid repeatedly banging on the database. It is also used
31 * for writing the values back to the database, while maintaining the
38 * These fields are updated atomically with the database.
49 * The cached copy of the meta-data fields from the database.
75 * database lock to read all the fields atomically.
84 // If the fields have not been initialized from the database,
85 // then read the database
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/performance_monitor/
performance_monitor_ui_util.cc 40 const Database::MetricVector* metrics,
46 Database::MetricVector::const_iterator metric = metrics->begin();
70 scoped_ptr<Database::MetricVector> NoAggregation::AggregateInterval(
72 Database::MetricVector::const_iterator* metric,
73 const Database::MetricVector::const_iterator& metric_end,
77 scoped_ptr<Database::MetricVector> aggregated_series(
78 new Database::MetricVector());
86 scoped_ptr<Database::MetricVector> MedianAggregation::AggregateInterval(
88 Database::MetricVector::const_iterator* metric,
89 const Database::MetricVector::const_iterator& metric_end
    [all...]
performance_monitor_ui_util.h 8 #include "chrome/browser/performance_monitor/database.h"
13 typedef std::vector<Database::MetricVector> VectorOfMetricVectors;
28 // of all intervals for which the database was active for the span to
32 const Database::MetricVector* metrics,
46 virtual scoped_ptr<Database::MetricVector> AggregateInterval(
48 Database::MetricVector::const_iterator* metric,
49 const Database::MetricVector::const_iterator& metric_end,
58 virtual scoped_ptr<Database::MetricVector> AggregateInterval(
60 Database::MetricVector::const_iterator* metric,
61 const Database::MetricVector::const_iterator& metric_end
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/blackberry/
http-cookie-database-set.php 8 $path = str_replace("http-cookie-database-set.php", "http-cookie-database-update.php", $_SERVER["PHP_SELF"]);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
anydbm.py 14 dependent on the type of database being opened (determined by whichdb
58 """Open or create database at path given by *file*.
61 for read-write access of an existing database, 'c' for read-write access
62 to a new or existing database, and 'n' for read-write access to a new
63 database.
65 Note: 'r' and 'w' fail if the database doesn't exist; 'c' creates it
66 only if it doesn't exist; and 'n' always creates a new database.
69 # guess the type of an existing database
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
anydbm.py 14 dependent on the type of database being opened (determined by whichdb
58 """Open or create database at path given by *file*.
61 for read-write access of an existing database, 'c' for read-write access
62 to a new or existing database, and 'n' for read-write access to a new
63 database.
65 Note: 'r' and 'w' fail if the database doesn't exist; 'c' creates it
66 only if it doesn't exist; and 'n' always creates a new database.
69 # guess the type of an existing database
  /frameworks/base/docs/html/sdk/api_diff/11/changes/
android.database.DatabaseUtils.html 10 android.database.DatabaseUtils
74 Class android.database.<A HREF="../../../../reference/android/database/DatabaseUtils.html" target="_top"><font size="+2"><code>DatabaseUtils</code></font></A>
86 <A NAME="android.database.DatabaseUtils.appendSelectionArgs_added(java.lang.String[], java.lang.String[])"></A>
87 <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/database/DatabaseUtils.html#appendSelectionArgs(java.lang.String[], java.lang.String[])" target="_top"><code>appendSelectionArgs</code></A>(<code>String[],</nobr> String[]<nobr><nobr></code>)</nobr>
93 <A NAME="android.database.DatabaseUtils.blobFileDescriptorForQuery_added(android.database.sqlite.SQLiteDatabase, java.lang.String, java.lang.String[])"></A>
94 <nobr><code>ParcelFileDescriptor</code>&nbsp;<A HREF="../../../../reference/android/database/DatabaseUtils.html#blobFileDescriptorForQuery(android.database.sqlite.SQLiteDatabase, java.lang.String, java.lang.String[])" target="_top"><code>blobFileDescriptorForQuery</code></A>(<code>SQLiteDatabase,</nobr> String<nobr>,</nobr> String[]<nobr><nobr></code>)</nobr>
100 <A NAME="android.database.DatabaseUtils.blobFileDescriptorForQuery_added(android.database.sqlite.SQLiteStatement, java.lang. (…)
    [all...]
  /external/chromium_org/chrome/browser/performance_monitor/
database.cc 5 #include "chrome/browser/performance_monitor/database.h"
70 const char Database::kDatabaseSequenceToken[] =
84 base::Time Database::SystemClock::GetTime() {
89 scoped_ptr<Database> Database::Create(base::FilePath path) {
95 scoped_ptr<Database> database; local
97 return database.Pass();
98 database.reset(new Database(path))
483 leveldb::DB* database; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/activity_log/
fullstream_ui_policy.h 49 // Delete everything in the database.
52 // Database table schema.
64 // the database thread.
76 // The implementation of RemoveURLs; this must only run on the database
81 // database thread.
84 // The implementation of DeleteDatabase; this must only run on the database
88 // Tracks any pending updates to be written to the database, if write
89 // batching is turned on. Should only be accessed from the database thread.
94 // database thread.
97 // Internal method to read data from the database; called on the databas
    [all...]
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_webdata.h 36 // Schedules a task to add form fields to the web database.
50 // Checks if there are any form elements in the database.
54 // Removes form elements recorded for Autocomplete from the database.
61 // Schedules a task to add an Autofill profile to the web database.
64 // Schedules a task to update an Autofill profile in the web database.
67 // Schedules a task to remove an Autofill profile from the web database.
78 // Schedules a task to add credit card to the web database.
81 // Schedules a task to update credit card in the web database.
84 // Schedules a task to remove a credit card from the web database.
95 // Removes Autofill records from the database
    [all...]

Completed in 303 milliseconds

1 23 4 5 6 7 8 91011>>