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

1 2 3 4 56 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xresource.h 181 XrmDatabase /* database */
185 XrmDatabase* /* database */,
193 XrmDatabase* /* database */,
200 XrmDatabase* /* database */,
207 XrmDatabase* /* database */,
213 XrmDatabase* /* database */,
218 XrmDatabase /* database */,
226 XrmDatabase /* database */,
234 XrmDatabase /* database */,
251 * Resource Database Managemen
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xresource.h 181 XrmDatabase /* database */
185 XrmDatabase* /* database */,
193 XrmDatabase* /* database */,
200 XrmDatabase* /* database */,
207 XrmDatabase* /* database */,
213 XrmDatabase* /* database */,
218 XrmDatabase /* database */,
226 XrmDatabase /* database */,
234 XrmDatabase /* database */,
251 * Resource Database Managemen
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/async/
README.txt 2 Normally, when SQLite writes to a database file, it waits until the write
10 the database, eliminating the bottleneck.
28 a database write does not have to wait for (sometimes slow) disk I/O
36 your program crashes or if a power loss occurs after the database
38 database change might never make it to disk and the next user of the
39 database might not see your change.
79 implementation of asynchronous IO may access a single database
86 from multiple processes may also read and write the database file.
89 * When a connection using asynchronous IO begins a database
90 transaction, the database is locked immediately. However th
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
attach3.test 31 # Create tables t1 and t2 in the main database
37 # Create tables t1 and t2 in database file test2.db
47 # Create a table in the auxilary database.
75 # Create an index on the auxilary database table.
92 # Drop the index on the aux database table.
112 # Drop tables t1 and t2 in the auxilary database.
133 # Create a view in the auxilary database.
166 # Create a trigger in the auxilary database.
240 ATTACH DATABASE '/nodir/nofile.x' AS notadb;
242 } {1 {unable to open database: /nodir/nofile.x}
    [all...]
superlock.test 21 # 1.*: Test superlock on a rollback database. Test that once the db is
25 # 2.*: Test superlock on a WAL database with zero frames in the WAL file.
35 # correctly to wait for existing clients to clear on a WAL database.
39 # 6.*: Test that if a superlocked WAL database is overwritten, existing
52 do_catchsql_test 1.3 { SELECT * FROM t1 } {1 {database is locked}}
61 do_catchsql_test 2.3 { SELECT * FROM t1 } {1 {database is locked}}
62 do_catchsql_test 2.4 { INSERT INTO t1 VALUES(5, 6)} {1 {database is locked}}
69 do_catchsql_test 3.3 { SELECT * FROM t1 } {1 {database is locked}}
70 do_catchsql_test 3.4 { INSERT INTO t1 VALUES(5, 6)} {1 {database is locked}}
77 do_catchsql_test 4.3 { SELECT * FROM t1 } {1 {database is locked}
    [all...]
shared4.test 22 # threadsafe-capable database engine.
58 ATTACH DATABASE 'test2.db' AS two;
59 ATTACH DATABASE 'test3.db' AS three;
60 ATTACH DATABASE 'test4.db' AS four;
63 ATTACH DATABASE 'test4.db' AS four;
64 ATTACH DATABASE 'test3.db' AS three;
65 ATTACH DATABASE 'test1.db' AS one;
68 ATTACH DATABASE 'test1.db' AS one;
69 ATTACH DATABASE 'test2.db' AS two;
70 ATTACH DATABASE 'test4.db' AS four
    [all...]
  /external/chromium_org/chrome/browser/performance_monitor/
database.h 53 // Stores information about when there is data in the database. When the
54 // database is constructed, the time is noted as the start of the active
56 // of the current active interval. If the database has no write operations for
57 // a certain amount of time, then the database is considered inactive for that
74 // Stores the most recent metric statistics to go into the database. There is
76 // in-memory version of this database with a mapping from a concatenation of
79 // database becomes useful when it is necessary to find all the active metrics
86 // Stores the max metric statistics that have been inserted into the database.
88 // keeps an in-memory version of this database with a mapping from a
99 class Database {
    [all...]
  /external/chromium_org/chrome/browser/resources/sync_file_system_internals/
dump_database.js 14 * Get the database dump.
39 * @param {Array} databaseDump List of dictionaries for the database dump.
41 * The remaining elements must be dictionaries for the database dump,
65 * @param {Array} databaseDump List of lists for the database dump.
68 var placeholder = $('dump-database-placeholder');
85 $('refresh-database-dump').addEventListener('click', getDatabaseDump);
  /external/e2fsprogs/lib/et/test_cases/
heimdal2.et 29 ec KADM_NO_SERV, "Could not find service name in services database"
37 ec KADM_INUSE, "Entry already exists in database"
38 ec KADM_UK_SERROR, "Database store error"
39 ec KADM_UK_RERROR, "Database read error"
43 ec KADM_NOENTRY, "No such entry in the database"
51 ec KADM_DB_INUSE, "Database is locked or in use--try again later"
  /frameworks/base/docs/html/tools/help/
sqlite3.jd 23 <p>You can also optionally specify a full path to a database that you want to explore.
44 pull the database file from the device and start {@code sqlite3}:</p>
47 <li>Copy a database file from your device to your host machine:
49 adb pull &lt;database-file-on-device&gt;
53 <li>Start the sqlite3 tool from the <code>/tools</code> directory, specifying the database
56 sqlite3 &lt;database-file-on-host&gt;
  /packages/apps/Email/src/com/android/email/provider/
AccountBackupRestore.java 25 * Account backup/restore was implemented entirely for the purpose of recovering from database
27 * is that this is due to some kind of memory issue). Rather than have the offending database get
30 * accounts in the database and 2) there are backup accounts. This, at least, would cause user's
34 * backup version of the Account and HostAuth tables in a second database (EmailProviderBackup.db)
37 * determining whether or not a "corrupt" database is truly corrupt; the problem here is that it
43 * Backup user Account and HostAuth data into our backup database
  /development/samples/training/threadsample/src/com/example/android/threadsample/
DataProvider.java 23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteDatabase;
25 import android.database.sqlite.SQLiteException;
26 import android.database.sqlite.SQLiteOpenHelper;
73 // Defines an helper object for the backing database
126 // Closes the SQLite database helper class, to avoid memory leaks
132 * Defines a helper class that opens the SQLite database for this provider when a request is
133 * received. If the database doesn't yet exist, the helper creates it.
137 * Instantiates a new SQLite database using the supplied database name and versio
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
attach.c 24 ** ATTACH DATABASE abc AS def
31 ** ATTACH DATABASE abc||def AS 'db2'
56 ** ATTACH DATABASE x AS y KEY z
87 ** * Specified database name already being used.
96 zErrDyn = sqlite3MPrintf(db, "cannot ATTACH database within transaction");
103 zErrDyn = sqlite3MPrintf(db, "database %s is already in use", zName);
123 /* Open the database file. If the btree is successfully opened, use
124 ** it to obtain the database schema. At this point the schema may
132 zErrDyn = sqlite3MPrintf(db, "database is already attached");
140 "attached databases must use the same text encoding as main database");
    [all...]
  /external/chromium/chrome/browser/history/
history_database.h 27 // Encapsulates the SQL connection for the history database. This class holds
28 // the database connection and has methods the history system (including full
31 // We try to keep most logic out of the history database; this should be seen
42 // A simple class for scoping a history database transaction. This does not
43 // support rollback since the history database doesn't, either.
58 // database cleanup.
69 // Call to set the mode on the database to exclusive. The default locking mode
71 // performance since we know nobody else is using the database. This is
72 // separate from Init() since the in-memory database attaches to slurp the
79 // Transactions on the history database. Use the Transaction object abov
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/performance_monitor/
performance_monitor_ui_util_unittest.cc 21 scoped_ptr<Database::MetricVector> AggregateSingleInterval(
23 const Database::MetricVector* metrics,
28 Database::MetricVector::const_iterator metric = metrics->begin();
45 return scoped_ptr<Database::MetricVector>();
53 Database::MetricVector metric_vector;
59 scoped_ptr<Database::MetricVector> aggregated_metric =
80 Database::MetricVector metric_vector;
82 Database::MetricVector aggregated_metric =
110 Database::MetricVector metric_vector;
119 Database::MetricVector aggregated_metric
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_factory.cc 15 #include "webkit/common/database/database_identifier.h"
147 // If there are any connections to the database, directly delete the
148 // database.
172 scoped_refptr<IndexedDBDatabase> database = local
174 if (!database) {
178 "Internal error creating database backend for "
183 database_map_[unique_identifier] = database;
184 database->DeleteDatabase(callbacks);
242 // If an in-memory database, bind lifetime to this factory instance.
265 scoped_refptr<IndexedDBDatabase> database; local
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/11/changes/
android.database.sqlite.SQLiteCursor.html 10 android.database.sqlite.SQLiteCursor
74 Class android.database.sqlite.<A HREF="../../../../reference/android/database/sqlite/SQLiteCursor.html" target="_top"><font size="+2"><code>SQLiteCursor</code></font></A>
85 <A NAME="android.database.sqlite.SQLiteCursor.ctor_added(android.database.sqlite.SQLiteCursorDriver, java.lang.String, android.database.sqlite.SQLiteQuery)"></A>
86 <nobr><A HREF="../../../../reference/android/database/sqlite/SQLiteCursor.html#SQLiteCursor(android.database.sqlite.SQLiteCursorDriver, java.lang.String, android.database.sqlite.SQLiteQuery)" target="_top"><code>SQLiteCursor</code></A>(<code>SQLiteCursorDriver,</nobr> String<nobr>,</nobr> SQLiteQuery<nobr><nobr></code>)</nobr>
100 <A NAME="android.database.sqlite.SQLiteCursor.ctor_changed(android.database.sqlite.SQLiteDatabase, android.database.sqlite.S (…)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsTransaction.java 19 import android.database.sqlite.SQLiteDatabase;
20 import android.database.sqlite.SQLiteTransactionListener;
95 * If the given database has not already been enlisted in this transaction, adds it to our
97 * database in this transaction, this is a no-op.
98 * @param db The database to start a transaction on, if necessary.
131 * Retrieves the database enlisted in the transaction corresponding to the given tag.
132 * @param tag The tag of the database to look up.
133 * @return The database corresponding to the tag, or null if no database with that tag has been
141 * Removes the database corresponding to the given tag from this transaction. It is now th
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
HttpAuthDatabase.java 9 import android.database.Cursor;
10 import android.database.sqlite.SQLiteDatabase;
11 import android.database.sqlite.SQLiteException;
15 * This database is used to support WebView's setHttpAuthUsernamePassword and
24 * provided by the underlying SQLiteDatabase instance. The exception is database opening: this
57 * initialization of that database.
59 * @param context the Context to use for opening the database
74 * @param context the Context to use for opening the database
90 * Opens the database, and upgrades it if necessary.
92 * @param context the Context to use for opening the database
    [all...]
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_webdata_backend_impl.h 73 // Adds form fields to the web database.
88 // Removes form elements recorded for Autocomplete from the database.
96 // named |name| from the database.
101 // Adds an Autofill profile to the web database.
105 // Updates an Autofill profile in the web database.
109 // Removes an Autofill profile from the web database.
113 // Returns all Autofill profiles from the web database.
116 // Adds a credit card to the web database.
120 // Updates a credit card in the web database.
124 // Removes a credit card from the web database
    [all...]
  /libcore/luni/src/main/java/java/sql/
Driver.java 46 * if a database error occurs.
51 * Attempts to make a database connection to a data source specified by a
59 * strings. Normally, a connection to a database requires at
61 * "password"} in order to pass authentication to the database.
62 * @return the connection to the database.
64 * if a database error occurs.
87 * to a database. Note that the returned array of properties may change
91 * the URL of the database. An application may call this method
94 * database login process.
97 * prompted to provide in order to connect to the database
    [all...]
DriverManager.java 31 * Provides facilities for managing JDBC drivers. The <code>android.database</code> and
32 * <code>android.database.sqlite</code> packages offer a higher-performance alternative for new
117 * database.
133 * Attempts to establish a connection to the given database URL.
136 * a URL string representing the database target to connect with.
137 * @return a {@code Connection} to the database identified by the URL.
141 * database identified by the URL.
148 * Attempts to establish a connection to the given database URL.
151 * a URL string representing the database target to connect with
158 * the corresponding database
    [all...]
PreparedStatement.java 42 * if a database error happens.
55 * if a database error happens.
73 * if a database error happens.
83 * if a database error happens or if the SQL statement does not
96 * if a database error happens or if the SQL statement returns a
114 * if there is a database error.
125 * if a database error happens.
139 * if a database error happens.
164 * if a database error happens.
180 * if a database error happens
    [all...]
  /external/clang/include/clang/Tooling/
CompilationDatabase.h 21 // compilation database from the root of the build tree.
57 /// A compilation database allows the user to retrieve all compile command lines
65 /// \brief Loads a compilation database from a build directory.
67 /// Looks at the specified 'BuildDirectory' and creates a compilation database
72 /// compilation database for the build directory.
80 /// \brief Tries to detect a compilation database location and load it.
82 /// Looks for a compilation database in all parent paths of file 'SourceFile'
87 /// \brief Tries to detect a compilation database location and load it.
89 /// Looks for a compilation database in directory 'SourceDir' and all
101 /// A compilation database representing the project would return both comman
    [all...]
  /cts/tests/assets/webkit/
test_databaseaccess.html 22 document.title = db ? "Has database" : "No database";

Completed in 782 milliseconds

1 2 3 4 56 7 8 91011>>