HomeSort by relevance Sort by last modified time
    Searched refs:database (Results 276 - 300 of 1800) sorted by null

<<11121314151617181920>>

  /external/chromium_org/content/browser/indexed_db/
indexed_db_dispatcher_host.cc 30 #include "storage/browser/database/database_util.h"
31 #include "storage/common/database/database_identifier.h"
302 // TODO(dgrogan): Don't let a non-existing database be opened (and therefore
445 connection->database()->Abort(
512 connection->database()->CreateObjectStore(host_transaction_id,
519 connection->database()->Abort(
536 connection->database()->DeleteObjectStore(
557 connection->database()->CreateTransaction(
610 connection->database()->Get(
681 connection->database()->Put(host_transaction_id
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
DummyProvider.java 25 import android.database.Cursor;
26 import android.database.sqlite.SQLiteDatabase;
27 import android.database.sqlite.SQLiteOpenHelper;
  /developers/build/prebuilts/gradle/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/db/
LocationDbHelper.java 21 import android.database.Cursor;
22 import android.database.sqlite.SQLiteDatabase;
23 import android.database.sqlite.SQLiteOpenHelper;
35 * A helper class to set up the database that holds the GPS location information
81 * database.
103 * objects from the database for a given day. The list can be empty (but not {@code null}) if
147 * Deletes all the entries in the database for the given day. The argument {@code day} should
159 * Deletes all the entries in the database for the day that the {@link java.util.Calendar}
  /developers/samples/android/wearable/wear/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/db/
LocationDbHelper.java 21 import android.database.Cursor;
22 import android.database.sqlite.SQLiteDatabase;
23 import android.database.sqlite.SQLiteOpenHelper;
35 * A helper class to set up the database that holds the GPS location information
81 * database.
103 * objects from the database for a given day. The list can be empty (but not {@code null}) if
147 * Deletes all the entries in the database for the given day. The argument {@code day} should
159 * Deletes all the entries in the database for the day that the {@link java.util.Calendar}
  /development/samples/browseable/SpeedTracker/Application/src/com.example.android.wearable.speedtracker/db/
LocationDbHelper.java 21 import android.database.Cursor;
22 import android.database.sqlite.SQLiteDatabase;
23 import android.database.sqlite.SQLiteOpenHelper;
35 * A helper class to set up the database that holds the GPS location information
81 * database.
103 * objects from the database for a given day. The list can be empty (but not {@code null}) if
147 * Deletes all the entries in the database for the given day. The argument {@code day} should
159 * Deletes all the entries in the database for the day that the {@link java.util.Calendar}
  /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
59 * background initialization of that database.
61 * @param context the Context to use for opening the database
81 * @param context the Context to use for opening the database
99 * Opens the database, and upgrades it if necessary.
101 * @param context the Context to use for opening the database
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCursorAdapter.java 21 import android.database.ContentObserver;
22 import android.database.Cursor;
23 import android.database.DataSetObserver;
39 * Adapter that exposes data from a {@link android.database.Cursor Cursor} to a
ShadowAbstractCursor.java 7 import android.database.AbstractCursor;
8 import android.database.CursorWindow;
  /frameworks/base/core/java/android/database/sqlite/
SQLiteOpenHelper.java 17 package android.database.sqlite;
20 import android.database.DatabaseErrorHandler;
21 import android.database.sqlite.SQLiteDatabase.CursorFactory;
25 * A helper class to manage database creation and version management.
28 * optionally {@link #onOpen}, and this class takes care of opening the database
30 * Transactions are used to make sure the database is always in a sensible state.
33 * implementations to defer opening and upgrading the database until first use,
34 * to avoid blocking application startup with long-running database upgrades.
45 // When true, getReadableDatabase returns a read-only database if it is just being opened.
46 // The database handle is reopened in read/write mode when getWritableDatabase is called
    [all...]
  /frameworks/ex/common/java/com/android/common/content/
SyncStateContentProviderHelper.java 21 import android.database.Cursor;
22 import android.database.DatabaseUtils;
23 import android.database.sqlite.SQLiteDatabase;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DirectoryListLoader.java 21 import android.database.ContentObserver;
22 import android.database.Cursor;
23 import android.database.MatrixCursor;
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsMessageSender.java 23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteException;
25 import android.database.sqlite.SqliteWrapper;
  /packages/apps/Settings/src/com/android/settings/search/
IndexDatabaseHelper.java 20 import android.database.Cursor;
21 import android.database.sqlite.SQLiteDatabase;
22 import android.database.sqlite.SQLiteOpenHelper;
157 Log.i(TAG, "Bootstrapped database");
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarCache.java 20 import android.database.Cursor;
21 import android.database.sqlite.SQLiteDatabase;
22 import android.database.sqlite.SQLiteOpenHelper;
30 * a SQLite database.
62 * This exception is thrown when the cache encounter a null key or a null database reference
85 Log.e(TAG, "Could not read timezone database version from CalendarCache");
162 * Write a (key, value) pair in the database used by the cache. This method should be called in
165 * @param db the database (must not be null)
168 * @throws CacheException when key or database are null
173 throw new CacheException("Database cannot be null")
    [all...]
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 20 import android.database.Cursor;
21 import android.database.DatabaseUtils;
22 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;
  /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;
  /developers/demos/JustForUs/justforus/src/main/java/com/example/android/justforus/
AssetProvider.java 24 import android.database.Cursor;
25 import android.database.MatrixCursor;
  /developers/samples/android/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/
WeatherDataProvider.java 21 import android.database.Cursor;
22 import android.database.MatrixCursor;
29 * will be stored in an external and persistent location (ie. File, Database, SharedPreferences) so
57 * Database, SharedPreferences) so that the data can persist if the process is ever killed.
  /development/samples/ApiDemos/src/com/example/android/apis/app/
QuickContactsDemo.java 23 import android.database.CharArrayBuffer;
24 import android.database.Cursor;
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeBrowserProviderSuggestionsCursor.java 9 import android.database.AbstractCursor;
10 import android.database.Cursor;
76 // After clearing history, the Chrome bookmarks database will have a last access
  /external/chromium_org/chromeos/
cert_loader.cc 63 void CertLoader::StartWithNSSDB(net::NSSCertDatabase* database) {
65 database_ = database;
67 // Start observing cert database for changes.
  /external/chromium_org/content/test/data/indexeddb/
migration_test.js 15 "this script will create a new database that has no object stores");
transaction_not_blocked.js 7 // Do not use indexedDBTest() - need to re-use previous database.

Completed in 608 milliseconds

<<11121314151617181920>>