/external/chromium_org/third_party/sqlite/src/src/ |
backup.c | 28 sqlite3* pDestDb; /* Destination database handle */ 34 sqlite3* pSrcDb; /* Source database handle */ 56 ** backup_finish(). Both these functions obtain the source database 62 ** the page cache associated with the source database. The mutex 63 ** associated with the source database BtShared structure will always 73 ** Depending on the SQLite configuration, the database handles and/or 80 ** Return a pointer corresponding to database zDb (i.e. "main", "temp") 81 ** in connection handle pDb. If such a database cannot be found, return 84 ** If the "temp" database is requested, it may need to be opened by this 113 sqlite3Error(pErrorDb, SQLITE_ERROR, "unknown database %s", zDb) [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
attach.test | 50 ATTACH DATABASE 'test2.db' AS two; 61 DETACH DATABASE two; 77 ATTACH DATABASE 'test3.db' AS three; 87 DETACH DATABASE [three]; 118 } {1 {database db2 is already in use}} 126 } {1 {database db5 is already in use}} 131 } {1 {database db9 is already in use}} 136 } {1 {database main is already in use}} 142 } {1 {database temp is already in use}} 148 } {1 {database MAIN is already in use} [all...] |
corrupt5.test | 14 # segfault if it sees a corrupt database file. Checks for 29 # Create a database with a freelist containing at least two pages. 43 } {1 {malformed database schema (?)}}
|
shared6.test | 46 } {1 {database table is locked}} 83 } {1 {database table is locked: t1}} 86 } {1 {database table is locked}} 97 } {1 {database table is locked: t1}} 122 } {1 {database table is locked}} 130 } {1 {database table is locked: t1}} 138 # The following tests - shared6-2.* - test that two database connections 153 } {1 {database table is locked: t1}} 162 } {1 {database table is locked: t1}} 182 # already holding a read-lock on the database file. And that it i [all...] |
backup_ioerr.test | 31 # This proc creates a database of approximately 290 pages. Depending 79 # 1) Start with a reasonably sized database. One that includes the 83 # database to 10 pages only. 85 # 3) Step the backup process N times to partially backup the database 94 # backup_finish() the destination database handle error code and 99 # * following the call to backup_finish(), the destination database 102 # 4) Write to the database via the source database connection. Check 105 # * If an IO error occurs while writing the source database, the 119 # the backup database during step 4, then the conditions liste [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/ |
README.searchcvs.setup.mysql.txt | 1 Search CVS is a tool for converting cvs commits into a mysql database, which 2 can be updated without worry of data duplication. The database is then searchable 12 3. Load database tables using .dump files provided.
|
/external/junit/src/org/junit/ |
AfterClass.java | 19 * private static DatabaseConnection database; 21 * database= ...; 30 * database.logout();
|
/external/oprofile/doc/ |
opimport.1.in | 4 opimport \- converts sample database files 15 converts sample database files from a foreign binary format (abi) to the native format. 51 The abi file description of the sample database files
|
/external/srtp/crypto/include/ |
rdb.h | 2 * replay-database.h 4 * interface for a replay database for packet security 20 * window_end-i is in the database
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteDatabaseLockedException.java | 17 package android.database.sqlite; 20 * Thrown if the database engine was unable to acquire the 21 * database locks it needs to do its job. If the statement is a [COMMIT]
|
/frameworks/base/media/java/android/mtp/ |
MtpServer.java | 31 public MtpServer(MtpDatabase database, boolean usePtp) { 32 native_setup(database, usePtp); 62 private native final void native_setup(MtpDatabase database, boolean usePtp);
|
/libcore/luni/src/main/java/java/sql/ |
Array.java | 33 * if there is a database error. 49 * if there is a database error. 68 * if there is a database error. 81 * if there is a database error. 91 * if there is a database error. 99 * @return The database specific name or a fully-qualified SQL type name. 101 * if there is a database error. 111 * if there is a database error. 127 * if there is a database error. 145 * database error has occurred [all...] |
ResultSet.java | 28 * An interface for an object which represents a database table entry, returned 29 * as the result of the query to the database. 66 * the SQL data retrieved from the database to the Java type implied by the 155 * if a database error happens. 163 * if a database error happens. 172 * if a database error happens. 180 * if a database error happens. 188 * if a database error happens. 193 * Releases this {@code ResultSet}'s database and JDBC resources. You are 198 * connection to the database and the database itself [all...] |
Statement.java | 90 * if an error occurs accessing the database or the database 96 * Cancels this statement's execution if both the database and the JDBC 102 * if an error occurs accessing the database. 110 * if an error occurs accessing the database or the database 119 * if an error occurs accessing the database. 124 * Releases this statement's database and JDBC driver resources. 134 * if an error occurs accessing the database. 151 * if an error occurs accessing the database [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/database/ |
EmptyCursor.java | 17 package com.android.contacts.common.database; 19 import android.database.AbstractCursor; 20 import android.database.CursorIndexOutOfBoundsException;
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
SQLiteAsyncQuery.java | 19 import android.database.sqlite.SQLiteDatabase; 31 * @param db A readable database. 37 * Runs the query against the database and passes the result to the consumer.
|
SQLiteTransaction.java | 19 import android.database.sqlite.SQLiteDatabase; 29 * @param db A writable database. 35 * Runs the transaction against the database. The results are committed if
|
/external/chromium_org/chrome/browser/extensions/activity_log/ |
activity_log_policy.h | 36 // Subclasses will generally store data in an SQLite database (the 46 // Implementations based on a database should likely implement 47 // ActivityDatabase::Delegate, which provides hooks on database events and 48 // allows the database to periodically request that actions (which the policy 52 // database implementation is policy-specific and therefore completely 75 // writes to the database. Implements the default policy storing internal 112 // Compute the time bounds that should be used for a database query to 120 // Deletes obsolete database tables from an activity log database. This 123 // code. Returns true on success, false on database error [all...] |
/external/chromium_org/chrome/browser/safe_browsing/ |
safe_browsing_database.h | 53 // client-side detection (csd) whitelist databases. The browse database contains 54 // information about phishing and malware urls. The download database contains 58 // etc. The csd whitelist database contains URLs that will never be considered 67 // |enable_download_protection| is used to control the download database 70 // database feature. 72 // database feature. 74 // database feature. 90 // Initializes the database with the given filename. 93 // Deletes the current database and creates a new one. 96 // Returns false if |url| is not in the browse database. If i [all...] |
/external/bluetooth/bluedroid/stack/include/ |
sdp_api.h | 199 ** Description This function is called to initialize a discovery database. 270 /* API of utilities to find data in the local discovery database */ 276 ** Description This function queries an SDP database for a specific attribute. 278 ** of the database, else it continues from the next record after 307 ** Description This function queries an SDP database for a specific service. 309 ** of the database, else it continues from the next record after 324 ** Description This function queries an SDP database for a specific service. 326 ** of the database, else it continues from the next record after 359 ** Description This function queries an SDP database for a specific service. 361 ** of the database, else it continues from the next record afte [all...] |
/external/chromium_org/chrome/browser/history/ |
history_database.h | 34 // Encapsulates the SQL connection for the history database. This class holds 35 // the database connection and has methods the history system (including full 38 // We try to keep most logic out of the history database; this should be seen 50 // A simple class for scoping a history database transaction. This does not 51 // support rollback since the history database doesn't, either. 66 // database cleanup. 72 // underlying database connection. 83 // Computes and records various metrics for the database. Should only be 87 // Call to set the mode on the database to exclusive. The default locking mode 89 // performance since we know nobody else is using the database. This i [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorDatabaseAgent.h | 40 class Database; 70 String databaseId(Database*); 72 void didOpenDatabase(PassRefPtr<Database>, const String& domain, const String& name, const String& version); 76 Database* databaseForId(const String& databaseId); 79 InspectorFrontend::Database* m_frontend;
|
/external/chromium_org/third_party/sqlite/src/ |
spec.template | 6 Summary: SQLite is a C library that implements an embeddable SQL database engine 17 zero-configuration, transactional SQL database engine. 18 Programs that link with the SQLite library can have SQL database access 21 administer an SQLite database and which serves as an example of how to 31 to develop programs that use the SQLite database library.
|
/packages/providers/ContactsProvider/res/values-it/ |
strings.xml | 22 <string name="upgrade_msg" msgid="8640807392794309950">"Upgrade del database dei contatti."</string> 31 <string name="debug_dump_title" msgid="4916885724165570279">"Copia database di contatti"</string> 32 <string name="debug_dump_database_message" msgid="406438635002392290">"Stai per 1) creare una copia del tuo database che include tutte le informazioni di contatto e tutti i registri chiamate nella memoria interna e 2) inviarla tramite email. Ricorda di eliminare la copia non appena è stata correttamente copiata dal dispositivo o non appena ricevi l\'email."</string> 36 <string name="debug_dump_email_subject" msgid="108188398416385976">"Database di contatti allegato"</string> 37 <string name="debug_dump_email_body" msgid="4577749800871444318">"In allegato è presente il mio database di contatti contenente tutte le informazioni sui miei contatti. Trattare con cura."</string>
|
/external/chromium/chrome/browser/webdata/ |
web_database_migration_unittest.cc | 152 // The WebDatabaseMigrationTest encapsulates testing of database migrations. 200 // database. 227 // Load the database via the WebDatabase class and migrate the database to 235 // database. 286 // Tests that the all migrations from an empty database succeed. 288 // Load the database via the WebDatabase class and migrate the database to 296 // database. 319 // database [all...] |