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

<<11121314151617181920>>

  /external/javasqlite/src/main/java/SQLite/
Function.java 23 * SQLite.Database db = new SQLite.Database();
Constants.java 18 public static final int SQLITE_ERROR = 1; /* SQL error or missing database */
22 public static final int SQLITE_BUSY = 5; /* The database file is locked */
23 public static final int SQLITE_LOCKED = 6; /* A table in the database is locked */
25 public static final int SQLITE_READONLY = 8; /* Attempt to write a readonly database */
28 public static final int SQLITE_CORRUPT = 11; /* The database disk image is malformed */
30 public static final int SQLITE_FULL = 13; /* Insertion failed because database is full */
31 public static final int SQLITE_CANTOPEN = 14; /* Unable to open the database file */
32 public static final int SQLITE_PROTOCOL = 15; /* NOT USED. Database lock protocol error */
33 public static final int SQLITE_EMPTY = 16; /* Database is empty */
34 public static final int SQLITE_SCHEMA = 17; /* The database schema changed *
    [all...]
  /external/webkit/LayoutTests/storage/indexeddb/
database-quota-expected.txt 6 webkitIndexedDB.open('database-quota')
14 PASS db.name is "database-quota"
  /frameworks/base/test-runner/src/android/test/
RenamingDelegatingContext.java 24 import android.database.DatabaseErrorHandler;
25 import android.database.sqlite.SQLiteDatabase;
36 * This is a class which delegates to the given context, but performs database
37 * and file operations with a renamed database/file name (prefixes default
92 * @param diskName name of the database/file.
100 * @param diskName name of the database/file.
111 * @param filePrefix : a prefix with which database and file names will be
123 * @param filePrefix : a prefix with which database and file names will be
  /libcore/luni/src/main/java/java/sql/
Savepoint.java 33 * if an error occurrs accessing the database.
42 * if an error occurrs accessing the database.
  /packages/apps/Email/src/com/android/email/data/
ClosingMatrixCursor.java 19 import android.database.Cursor;
20 import android.database.MatrixCursor;
  /packages/experimental/RpcPerformance/src/com/android/rpc_performance/
Provider.java 21 import android.database.Cursor;
22 import android.database.MatrixCursor;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnSQLiteOpenHelper.java 20 import android.database.sqlite.SQLiteDatabase;
21 import android.database.sqlite.SQLiteOpenHelper;
  /external/chromium/chrome/browser/webdata/
web_data_service.h 294 // Unloads the database without actually shutting down the service. This can
311 // As the database processes requests at a later date, all deletion is
364 // Remove all tokens stored in the web database.
436 // Schedules a task to add form fields to the web database.
448 // Removes form elements recorded for Autocomplete from the database.
454 // Schedules a task to add an Autofill profile to the web database.
457 // Schedules a task to update an Autofill profile in the web database.
460 // Schedules a task to remove an Autofill profile from the web database.
470 // Remove "trashed" profile guids from the web database and optionally send
474 // Schedules a task to add credit card to the web database
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/html/
builds.html 12 This view shows the list of all the builds contained in the connected database
13 or in the local data files if no database is connected.
20 nor from the performance results database.
27 a performance results database is connected:
41 It's also possible to rewrite the local data files from the database contents
  /external/webkit/LayoutTests/storage/
change-version.html 3 <title>Test database.changeVersion</title>
45 db1 = window.openDatabase("changeversion-test", "", "Test for the database.changeVersion() function", 1024);
63 db1 = window.openDatabase("changeversion-test", "1", "Test for the database.changeVersion() function", 1024);
64 var db2 = window.openDatabase("changeversion-test", "1", "Test for the database.changeVersion() function", 1024);
103 This test verifies that the JS database.changeVersion() function works as expected.
  /external/webkit/Source/WebCore/platform/audio/
HRTFDatabaseLoader.cpp 88 // Asynchronously load the database in this thread.
102 // Load the default HRTF database.
112 // Start the asynchronous database loading process.
114 m_databaseLoaderThread = createThread(databaseLoaderEntry, this, "HRTF database loader");
136 return s_loader->database();
HRTFPanner.cpp 96 HRTFDatabase* database = HRTFDatabaseLoader::defaultHRTFDatabase(); local
97 ASSERT(database);
99 int numberOfAzimuths = database->numberOfAzimuths();
130 // This code only runs as long as the context is alive and after database has been loaded.
131 HRTFDatabase* database = HRTFDatabaseLoader::defaultHRTFDatabase(); local
132 ASSERT(database);
133 if (!database) {
138 // IRCAM HRTF azimuths values from the loaded database is reversed from the panner's notion of azimuth.
178 int numberOfAzimuths = database->numberOfAzimuths();
198 database->getKernelsFromAzimuthElevation(azimuthBlend, m_azimuthIndex, elevation, kernelL, kernelR, frameDe (…)
    [all...]
  /external/webkit/Source/WebCore/platform/sql/
SQLiteFileSystem.cpp 35 #if ENABLE(DATABASE)
53 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database, bool)
57 return sqlite3_open16(path.charactersWithNullTermination(), database);
63 // try to get the next sequence number from the given database
128 #endif // ENABLE(DATABASE)
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalProvider.java 21 import android.database.Cursor;
22 import android.database.sqlite.SQLiteDatabase;
23 import android.database.sqlite.SQLiteOpenHelper;
24 import android.database.sqlite.SQLiteQueryBuilder;
65 Log.w(TAG, "Upgrading test database from version " +
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseLocaleTest.java 17 package android.database;
19 import android.database.sqlite.SQLiteDatabase;
20 import android.database.Cursor;
95 // The database code currently uses PRIMARY collation strength,
97 // of case or accents), leaving the "cote" flavors in database order.
  /frameworks/base/test-runner/src/android/test/mock/
MockCursor.java 20 import android.database.CharArrayBuffer;
21 import android.database.ContentObserver;
22 import android.database.Cursor;
23 import android.database.DataSetObserver;
31 * A mock {@link android.database.Cursor} class that isolates the test code from real
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
SummarizerDBHelper.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
30 * A basic class that wraps database accesses inside itself and provides functionality to
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerProvider.java 23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteDatabase;
25 import android.database.sqlite.SQLiteOpenHelper;
47 * This class helps open, create, and upgrade the database file.
69 Log.w(LOG_TAG, "Upgrading database from version " + oldVersion
  /libcore/luni/src/main/java/javax/sql/
RowSetInternal.java 36 * if there is a problem accessing the database.
50 * if there is a problem accessing the database.
60 * if there is a problem accessing the database, or if the
72 * if there is a problem accessing the database.
84 * if there is a problem accessing the database.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ProfileAggregator.java 18 import android.database.sqlite.SQLiteDatabase;
19 import android.database.sqlite.SQLiteDoneException;
20 import android.database.sqlite.SQLiteStatement;
33 * A version of the ContactAggregator for use against the profile database.
76 // Profile aggregation is simple - find the single contact in the database and attach to
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
CommonNicknameCache.java 23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteDatabase;
58 * Read all known common nicknames from the database and populate a Bloom
60 * of unnecessary database lookups for nicknames. Given a name, we will take
62 * that the name is not in the database. If it is, we still need to run a
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaUpgradeReceiver.java 26 import android.database.sqlite.SQLiteDatabase;
37 * It's job is to prime the contacts database. Either create it
50 // Lookup the last known database version
73 Slog.i(TAG, "---> Start upgrade of media database " + file);
87 Slog.i(TAG, "<--- Finished upgrade of media database " + file
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 116 llvm::OwningPtr<CompilationDatabase> Database(
118 if (!Database) {
121 return Database.take();
158 ErrorMessage = "Error while opening JSON database: " + Result.message();
161 llvm::OwningPtr<JSONCompilationDatabase> Database(
163 if (!Database->parse(ErrorMessage))
165 return Database.take();
173 llvm::OwningPtr<JSONCompilationDatabase> Database(
175 if (!Database->parse(ErrorMessage))
177 return Database.take()
    [all...]
  /frameworks/base/core/java/android/webkit/
WebStorage.java 23 * {@link WebView}. It manages the Application Cache API, the Web SQL Database
26 * The Web SQL Database API provides storage which is private to a given
97 * Gets the quota for this origin, for the Web SQL Database API, in
98 * bytes. If this origin does not use the Web SQL Database API, this
132 * Database APIs. This method operates asynchronously, with the result
143 * Cache and Web SQL Database APIs by the given origin. The amount is given
153 * Gets the storage quota for the Web SQL Database API for the given origin.
164 * Sets the storage quota for the Web SQL Database API for the given origin.
175 * Web SQL Database APIs by the given origin. The origin is specified using
184 * This includes the Application Cache, Web SQL Database and the HTML5 We
    [all...]

Completed in 700 milliseconds

<<11121314151617181920>>