HomeSort by relevance Sort by last modified time
    Searched full:database (Results 426 - 450 of 4506) sorted by null

<<11121314151617181920>>

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
SQLiteDatabaseTest.java 37 long replaceId = database.replace("table_name", null, values);
40 Statement statement = shadowOf(database).getConnection().createStatement();
  /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/apps/UnifiedEmail/src/com/android/mail/utils/
Observable.java 19 import android.database.DataSetObservable;
20 import android.database.DataSetObserver;
  /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_org/chrome/browser/history/
expire_history_backend.h 60 // history, as well as moving data from the main database to the archived
61 // database as it gets old.
132 // Moves the given visits from the main database to the archived one.
156 // Adds or merges the given URL row with the archived database, returning the
157 // ID of the URL in the archived database, or 0 on failure. The main (source)
158 // database will not be affected (the URL will have to be deleted later).
160 // Assumes the archived database is not NULL.
179 // database, and the list of affected URLs already be filled into
188 // Creates entries in the archived database for the unique URLs referenced
190 // database. The source database WILL NOT BE MODIFIED. The source URLs an
    [all...]
in_memory_url_index.h 53 // Holds portions of the URL database in memory in an indexed form. Used to
61 // words and characters in the URL history database except when converting
76 // rebuilding from the history database.
100 // history database within the profile wherein the cache and transaction
110 // history database.
153 // HistoryDBTask used to rebuild our private data from the history database.
178 // from the cache or a complete rebuild from the history database.
182 // the history database is kept and saves that path to |file_path|. Returns
192 // database.
196 // or rebuilding our private data from the history database. |succeeded
    [all...]
top_sites_database.h 50 // Sets the rank for a given URL. The URL must be in the database.
73 // Rank used to indicate that a URL is not stored in the database.
80 // Adds a new URL to the database.
88 // Updates thumbnail of a URL that's already in the database.
89 // Returns true if the database query succeeds.
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteDatabase.cpp 47 static const char notOpenErrorMessage[] = "database is not open";
74 WTF_LOG_ERROR("SQLite database failed to load from %s\nCause - %s", filename.ascii().data(),
84 WTF_LOG_ERROR("SQLite database error when enabling extended errors - %s", m_openErrorMessage.data());
96 WTF_LOG_ERROR("SQLite database could not set temp_store to memory");
179 WTF_LOG_ERROR("Failed to set maximum size of database to %I64i bytes", static_cast<long long>(size));
181 WTF_LOG_ERROR("Failed to set maximum size of database to %lli bytes", static_cast<long long>(size));
190 // Since the page size of a database is locked in at creation and therefore cannot be dynamic,
246 WTF_LOG(SQLDatabase, "BusyTimeout set on non-open database");
254 WTF_LOG(SQLDatabase, "Busy handler set on non-open database");
284 WTF_LOG(SQLDatabase, "Unable to retrieve list of tables from database");
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
exclusive2.test 18 # Do not use a codec for tests in this file, as the database file is
90 # 1-3: Build a database with connection 1, calculate a signature.
91 # 4-7: Modify the database using a second connection in a way that
94 # 8: Check that using the first connection, the database signature
98 # 10: Ensure that the first connection now sees the updated database. It
102 # This will only work if the database cache is large enough to hold
103 # the entire database. In the case of 1024 byte pages, this means
105 # loaded from the database file in step 8.
129 # entire database.
177 # 1-3: Build a database with exclusive-access connection 1,
    [all...]
diskfull.test 43 } {1 {database or disk is full}}
51 } {1 {database or disk is full}}
67 set r {1 {database or disk is full}}
71 set r {1 {database or disk is full}}
74 } {1 {database or disk is full}}
jrnlmode2.test 32 # then a second connection cannot open a read-transaction on the database.
35 # database file. If this fails because another connection has a shared
41 # unix file descriptor on the database file is opened in O_RDONLY mode.
43 # When SQLite queries the database file for the schema in order to compile
45 # attempts to obtain an exclusive lock on the database file (this is a
lock2.test 12 # focus of this script is database locks between competing processes.
24 # lock2-1.1: Connect a second process to the database.
65 } {database is locked}
70 } {1 {database is locked}}
87 } {database is locked}
  /external/javasqlite/src/main/java/SQLite/
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/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/chromium_org/content/browser/indexed_db/
indexed_db_database_unittest.cc 98 scoped_refptr<IndexedDBDatabase> database = local
110 database->OpenConnection(request,
114 EXPECT_EQ(database, request->connection()->database());
118 database->CreateTransaction(transaction_id,
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
Database.h 51 class Database : public DatabaseBase, public DatabaseBackend, public ScriptWrappable {
53 virtual ~Database();
62 static Database* from(DatabaseBackend*);
74 Database(PassRefPtr<DatabaseContext>, const String& name,
77 static PassRefPtr<Database> create(ExecutionContext*, PassRefPtr<DatabaseBackendBase>);
  /external/clang/include/clang/Tooling/
CommonOptionsParser.h 13 // compilation database and input files.
16 // for locating a compilation database and source files, and help messages
37 /// compilation commands database and runs a tool with user-specified action. It
63 /// \brief Parses command-line, initializes a compilation database.
69 /// Returns a reference to the loaded compilations database.
  /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/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/database/
TestCursor.java 1 package com.xtremelabs.robolectric.tester.android.database;
4 import android.database.CharArrayBuffer;
5 import android.database.ContentObserver;
6 import android.database.Cursor;
7 import android.database.DataSetObserver;
  /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

Completed in 1096 milliseconds

<<11121314151617181920>>