HomeSort by relevance Sort by last modified time
    Searched refs:database (Results 226 - 250 of 1214) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForOrganization.java 24 import android.database.Cursor;
25 import android.database.DatabaseUtils;
26 import android.database.sqlite.SQLiteDatabase;
DataRowHandlerForEmail.java 23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteDatabase;
DataRowHandlerForNickname.java 23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteDatabase;
DataRowHandlerForStructuredPostal.java 23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteDatabase;
  /cts/tests/tests/database/src/android/database/sqlite/cts/
DatabaseStatementTest.java 17 package android.database.sqlite.cts;
20 import android.database.Cursor;
21 import android.database.sqlite.SQLiteConstraintException;
22 import android.database.sqlite.SQLiteDatabase;
23 import android.database.sqlite.SQLiteDoneException;
24 import android.database.sqlite.SQLiteStatement;
  /external/webkit/LayoutTests/storage/
hash-change-with-xhr.js 74 // Allow a little time for all the database transactions to complete now we've stopped making them.
102 // Init the database.
106 // Give a little for the database to 'warm up' before making xhr requests
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);
change-version-handle-reuse.js 12 db = openDatabaseWithSuffix("ChangeVersion", "", "Test that changing a database version doesn't kill our handle to it", 1);
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseStatementTest.java 17 package android.database;
20 import android.database.Cursor;
21 import android.database.sqlite.SQLiteConstraintException;
22 import android.database.sqlite.SQLiteDatabase;
23 import android.database.sqlite.SQLiteDoneException;
24 import android.database.sqlite.SQLiteStatement;
CursorWindowTest.java 17 package android.database;
20 import android.database.CursorWindow;
DatabaseLockTest.java 17 package android.database;
19 import android.database.sqlite.SQLiteDatabase;
27 * This is a series of unit tests for database locks.
64 * attempting to access a database concurrently.
66 * same database at the same time with the same prioritization, neither thread
67 * is locked out and prevented from accessing the database.
114 * testLockLatency() tests the latency of database locks.
116 * the same database, the locking/unlocking of the database is done within an
  /packages/providers/DrmProvider/src/com/android/providers/drm/
DrmProvider.java 21 import android.database.Cursor;
22 import android.database.sqlite.SQLiteDatabase;
23 import android.database.sqlite.SQLiteException;
24 import android.database.sqlite.SQLiteOpenHelper;
25 import android.database.sqlite.SQLiteQueryBuilder;
26 import android.database.sqlite.SQLiteStatement;
50 * Creates and updated database on demand when opening it.
51 * Helper class to create database the first time the provider is
53 * an updated version of the database.
64 * Creates database the first time we try to open it
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
QuickContactsDemo.java 23 import android.database.CharArrayBuffer;
24 import android.database.Cursor;
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherDataProvider.java 26 import android.database.Cursor;
27 import android.database.MatrixCursor;
34 * will be stored in an external and persistent location (ie. File, Database, SharedPreferences) so
62 * Database, SharedPreferences) so that the data can persist if the process is ever killed.
  /external/webkit/Source/WebCore/inspector/front-end/
Database.js 29 WebInspector.Database = function(id, domain, name, version)
37 WebInspector.Database.prototype = {
97 onError(WebInspector.UIString("Database not found."));
115 var database = new WebInspector.Database(
120 WebInspector.panels.resources.addDatabase(database);
146 InspectorBackend.registerDomainDispatcher("Database", new WebInspector.DatabaseDispatcher());
  /frameworks/base/core/java/android/content/
ContentQueryMap.java 19 import android.database.ContentObserver;
20 import android.database.Cursor;
30 * the database that is to be used as the key of the map is user-configurable, and the
  /frameworks/base/core/java/android/database/sqlite/
SQLiteProgram.java 17 package android.database.sqlite;
19 import android.database.DatabaseUtils;
  /frameworks/base/core/java/com/google/android/mms/util/
SqliteWrapper.java 24 import android.database.Cursor;
25 import android.database.sqlite.SQLiteException;
33 = "unable to open database file";
  /libcore/luni/src/test/java/libcore/sqlite/
QueryTimeoutTest.java 20 import SQLite.Database;
58 Database database = ((JDBCConnection) connection).getSQLiteDatabase(); local
59 database.create_function("DELAY", 2, new Function() {
  /packages/apps/Contacts/tests/src/com/android/contacts/list/
ContactListItemViewTest.java 23 import android.database.Cursor;
24 import android.database.MatrixCursor;
  /packages/apps/Mms/src/com/android/mms/transaction/
MessageStatusService.java 26 import android.database.Cursor;
27 import android.database.sqlite.SqliteWrapper;
75 // message's status in the database.
  /packages/apps/Mms/src/com/android/mms/util/
RateController.java 20 import android.database.sqlite.SqliteWrapper;
27 import android.database.Cursor;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ListSuggestionCursor.java 21 import android.database.DataSetObservable;
22 import android.database.DataSetObserver;
  /packages/apps/QuickSearchBox/tests/partial/src/com/android/quicksearchbox/tests/partial/
PartialSuggestionProvider.java 23 import android.database.Cursor;
24 import android.database.MatrixCursor;

Completed in 779 milliseconds

1 2 3 4 5 6 7 8 91011>>