HomeSort by relevance Sort by last modified time
    Searched full:database (Results 151 - 175 of 2668) sorted by null

1 2 3 4 5 67 8 91011>>

  /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
  /external/webkit/LayoutTests/storage/
open-database-while-transaction-in-progress.js 1 // Opens the database used in this test case
6 "Test to make sure that calling openDatabase() while a transaction is in progress on a different handle to the same database does not result in a deadlock.",
14 // than cache_size * page_size bytes in the database. The default value for
quota-tracking-expected.txt 1 UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{file, , 0} database:QuotaManagementDatabase2
2 This test checks to make sure that quotas are enforced per-origin instead of per-database, as they were prior to http://trac.webkit.org/projects/webkit/changeset/29983.
sql-data-types.js 1 //description("This test verifies that the javascript values returned by database queries are of same type as the values put into the database.");
44 notifyDone("PASS: database clean up ok.");
47 notifyDone("FAIL: Database clean up failed.");
82 var db = openDatabase("DataTypeTest", "1.0", "Database for sql data type test", 1);
  /external/webkit/Source/WebCore/manual-tests/inspector/
display-sql-transaction-error.html 3 var db = openDatabase("InspectorTest", "0.1", "Database for Inspector tests", 200000);
10 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=19438">Bug 19438: Transaction errors are never displayed in database query view</a>.</p>
15 <li>Click on the <code>InspectorTest</code> database</li>
  /external/webkit/Source/WebCore/manual-tests/
localstorage-empty-database.html 7 Since no data has been stored, no database file should have been created.</p>
9 <p>If you click <a href="javascript:localStorage.setItem('bar', 'baz');">here</a>, data will be stored, and a database file should be created.</p>
11 <p>If you click <a href="javascript:localStorage.clear();">here</a>, the local storage will be cleared, and the database file should be gone when the browser is closed.</p>
  /external/webkit/Source/WebKit/mac/Misc/
WebIconDatabase.h 31 // Sent whenever a site icon has changed. The object of the notification is the icon database.
58 Every icon in the database has a retain count. If an icon has a retain count greater than 0, it will be written to disk for later use. If an icon's retain count equals zero it will be removed from disk. The retain count is not persistent across launches. If the WebKit client wishes to retain an icon it should retain the icon once for every launch. This is best done at initialization time before the database begins removing icons. To make sure that the database does not remove unretained icons prematurely, call delayDatabaseCleanup until all desired icons are retained. Once all are retained, call allowDatabaseCleanup.
60 Note that an icon can be retained after the database clean-up has begun. This just has to be done before the icon is removed. Icons are removed from the database whenever new icons are added to it.
62 Retention methods can be called for icons that are not yet in the database.
74 @abstract Returns a shared instance of the icon database
127 @discussion Only effective if called before the database begins removing icons.
128 delayDatabaseCleanUp increments an internal counter that when 0 begins the database clean-up
    [all...]
  /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]
SQLiteDatabase.java 17 package android.database.sqlite;
22 import android.database.Cursor;
23 import android.database.DatabaseErrorHandler;
24 import android.database.DatabaseUtils;
25 import android.database.DefaultDatabaseErrorHandler;
26 import android.database.SQLException;
27 import android.database.sqlite.SQLiteDebug.DbStats;
53 * Exposes methods to manage a SQLite database.
55 * perform other common database management tasks.
57 * and managing a database
    [all...]
  /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...]
DriverManager.java 113 * database.
129 * Attempts to establish a connection to the given database URL.
132 * a URL string representing the database target to connect with.
133 * @return a {@code Connection} to the database identified by the URL.
137 * database identified by the URL.
144 * Attempts to establish a connection to the given database URL.
147 * a URL string representing the database target to connect with
154 * the corresponding database.
155 * @return a {@code Connection} to the database identified by the URL.
159 * database identified by the URL
    [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/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/dbus/dbus/
dbus-userdb.c 2 /* dbus-userdb.c User database abstraction
116 * Looks up a uid or username in the user database. Only one of name
119 * database and otherwise sort of sucks.
121 * @param db the database
125 * @returns the entry in the database
267 _dbus_warn ("Could not get password database information for UID of current process: %s\n",
307 * Locks global system user database.
317 * Unlocks global system user database.
327 * Gets the system global user database;
330 * @returns the database or #NULL if no memor
    [all...]
dbus-userdb.h 2 /* dbus-userdb.h User database abstraction
47 DBusHashTable *users; /**< Users in the database by UID */
48 DBusHashTable *groups; /**< Groups in the database by GID */
49 DBusHashTable *users_by_name; /**< Users in the database by name */
50 DBusHashTable *groups_by_name; /**< Groups in the database by name */
  /packages/experimental/AndroidVendorSecurityTool/src/com/android/vending/sectool/v1/
GoogleSettingsContract.java 21 import android.database.Cursor;
22 import android.database.SQLException;
48 // The database will take care of replacing duplicates.
78 * Look up a name in the database.
79 * @param resolver to access the database with
100 * Look up a name in the database
101 * @param resolver to access the database
116 * Store a name/value pair into the database.
117 * @param resolver to access the database with
120 * @return true if the value was set, false on database error
    [all...]
  /external/webkit/Source/WebKit/gtk/tests/
testwebplugindatabase.c 34 WebKitWebPluginDatabase* database; local
42 database = webkit_get_web_plugin_database();
43 pluginList = webkit_web_plugin_database_get_plugins(database);
57 webkit_web_plugin_database_refresh(database);
58 pluginList = webkit_web_plugin_database_get_plugins(database);
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmDatabaseHelper.java 22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Helper class for opening the database from multiple providers. Also provides
65 "Upgrading alarms database from version " +
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ProfileAggregator.java 18 import android.database.sqlite.SQLiteDatabase;
19 import android.database.sqlite.SQLiteDoneException;
20 import android.database.sqlite.SQLiteStatement;
25 * A version of the ContactAggregator for use against the profile database.
68 // Profile aggregation is simple - find the single contact in the database and attach to
  /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...]
  /external/collada/src/dae/
daeIOPluginCommon.cpp 24 : database(NULL),
41 database = _database;
58 if ( database->isDocumentLoaded( fileURI.getURI() ) )
77 // Insert the document into the database, the Database will keep a ref on the main dom, so it won't get deleted
78 // until we clear the database
82 int res = database->insertDocument(fileURI.getURI(),domObject,&document);
116 // Insert the document into the database, the Database will keep a ref on the main dom, so it won't get deleted
117 // until we clear the database
    [all...]

Completed in 1009 milliseconds

1 2 3 4 5 67 8 91011>>