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

1 2 3 4 5 67 8 91011>>

  /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.
MatrixCursorTest.java 17 package android.database;
  /frameworks/base/core/tests/coretests/src/android/database/sqlite/
SQLiteConnectionPoolTest.java 17 package android.database.sqlite;
39 * <p>Run with: bit FrameworksCoreTests:android.database.sqlite.SQLiteConnectionPoolTest
  /frameworks/base/media/java/android/mtp/
MtpServer.java 38 MtpDatabase database,
46 mDatabase = Preconditions.checkNotNull(database);
49 database,
56 database.setServer(this);
98 MtpDatabase database,
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
MtpFileWriter.java 64 void flush(MtpManager manager, MtpDatabase database, int[] operationsSupported)
72 final Identifier identifier = database.createIdentifier(mDocumentId);
92 database.getParentIdentifier(identifier.mDocumentId);
93 database.updateObject(
  /packages/apps/Contacts/tests/src/com/android/contacts/database/
NoNullCursorAsyncQueryHandlerTest.java 17 package com.android.contacts.database;
19 import android.database.Cursor;
  /packages/apps/Dialer/java/com/android/contacts/common/database/
NoNullCursorAsyncQueryHandler.java 17 package com.android.contacts.common.database;
21 import android.database.Cursor;
  /packages/apps/Dialer/java/com/android/dialer/common/database/
Selection.java 17 package com.android.dialer.common.database;
  /packages/apps/Settings/src/com/android/settings/slices/
SlicesDatabaseAccessor.java 21 import android.database.Cursor;
22 import android.database.sqlite.SQLiteDatabase;
67 * Query the slices database and return a {@link SliceData} object corresponding to the row
79 * Query the slices database and return a {@link SliceData} object corresponding to the row
89 * @return a list of keys in the Slices database matching on {@param isPlatformSlice}.
101 final SQLiteDatabase database = mHelper.getReadableDatabase(); local
105 try (final Cursor resultCursor = database.query(TABLE_SLICES_INDEX, columns, whereClause,
123 final SQLiteDatabase database = mHelper.getReadableDatabase(); local
125 final Cursor resultCursor = database.query(TABLE_SLICES_INDEX, SELECT_COLUMNS_ALL,
  /system/tpm/attestation/server/
attestation_service_test.cc 538 AttestationDatabase* database = mock_database_.GetMutableProtobuf(); local
539 database->mutable_credentials()->set_endorsement_public_key("public_key");
540 database->mutable_credentials()->set_endorsement_credential("certificate");
569 AttestationDatabase* database = mock_database_.GetMutableProtobuf(); local
570 database->mutable_credentials()->set_endorsement_public_key("public_key");
585 AttestationDatabase* database = mock_database_.GetMutableProtobuf(); local
586 database->mutable_identity_key()->set_identity_public_key("public_key");
587 database->mutable_identity_key()->set_identity_credential("certificate");
588 database->mutable_pcr0_quote()->set_quote("pcr0");
589 database->mutable_pcr1_quote()->set_quote("pcr1")
625 AttestationDatabase* database = mock_database_.GetMutableProtobuf(); local
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
cisco-core.c 69 char database[4]; /* Base of .data section (not in V3 crash info) */
68 char database[4]; \/* Base of .data section (not in V3 crash info) *\/ member in struct:__anon3934
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/migration/
MigrationTest.java 51 * Test custom database migrations.
209 public void migrate(SupportSQLiteDatabase database) {
210 database.execSQL("CREATE TABLE Entity4 (`id` INTEGER NOT NULL,"
233 SupportSQLiteDatabase database = helper.createDatabase(TEST_DB, 1); local
234 database.close();
247 SupportSQLiteDatabase database = helper.createDatabase(TEST_DB, 1); local
248 final MigrationDb.Dao_V1 dao = new MigrationDb.Dao_V1(database);
251 database.close();
288 SupportSQLiteDatabase database = helper.createDatabase(TEST_DB, 6); local
289 final MigrationDb.Dao_V1 dao = new MigrationDb.Dao_V1(database);
305 SupportSQLiteDatabase database = helper.createDatabase(TEST_DB, 6); local
329 SupportSQLiteDatabase database = helper.createDatabase(TEST_DB, 5); local
    [all...]
  /frameworks/support/room/runtime/src/main/java/androidx/room/
RoomDatabase.java 22 import android.database.Cursor;
53 * Base class for all Room databases. All classes that are annotated with {@link Database} must
56 * RoomDatabase provides direct access to the underlying database implementation but you should
59 * @see Database
84 * {@link InvalidationTracker} uses this lock to prevent the database from closing while it is
85 * querying database updates.
96 * You cannot create an instance of a database, instead, you should acquire it via
107 * @param configuration The database configuration.
123 * Returns the SQLite open helper used by this database.
125 * @return The SQLite open helper used by this database
253 SupportSQLiteDatabase database = mOpenHelper.getWritableDatabase(); local
    [all...]
  /bionic/tools/versioner/src/
DeclarationDatabase.cpp 55 HeaderDatabase& database; member in class:Visitor
61 Visitor(HeaderDatabase& database, CompilationType type, ASTContext& ctx)
62 : database(database), type(type), src_manager(ctx.getSourceManager()) {
193 auto symbol_it = database.symbols.find(declaration_name);
194 if (symbol_it == database.symbols.end()) {
197 std::tie(symbol_it, dummy) = database.symbols.insert({ declaration_name, symbol });
  /cts/tests/tests/database/src/android/database/cts/
ContentObserverTest.java 17 package android.database.cts;
20 import android.database.ContentObserver;
DatabaseUtils_InsertHelperTest.java 17 package android.database.cts;
22 import android.database.Cursor;
23 import android.database.DatabaseUtils.InsertHelper;
24 import android.database.sqlite.SQLiteDatabase;
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteProgramTest.java 17 package android.database.sqlite.cts;
21 import android.database.Cursor;
22 import android.database.sqlite.SQLiteDatabase;
23 import android.database.sqlite.SQLiteDoneException;
24 import android.database.sqlite.SQLiteException;
25 import android.database.sqlite.SQLiteQuery;
26 import android.database.sqlite.SQLiteStatement;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
module.c 53 static char *kwlist[] = {"database", "timeout", "detect_types", "isolation_level", "check_same_thread", "factory", "cached_statements", NULL, NULL};
54 PyObject* database; local
65 &database, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statements))
80 "connect(database[, timeout, isolation_level, detect_types, factory])\n\
82 Opens a connection to the SQLite database file *database*. You can use\n\
83 \":memory:\" to open a database connection to a database that resides in\n\
  /external/mockito/src/test/java/org/mockitousage/annotation/
MockInjectionUsingConstructorTest.java 41 @Mock private ArticleDatabase database; field in class:MockInjectionUsingConstructorTest
  /external/protobuf/python/google/protobuf/pyext/
descriptor_pool.cc 74 cpool->database = NULL;
116 DescriptorDatabase* database) {
121 if (database != NULL) {
122 cpool->pool = new DescriptorPool(database);
123 cpool->database = database;
145 DescriptorDatabase* database = NULL; local
147 database = new PyDescriptorDatabase(py_database);
150 PyDescriptorPool_NewWithDatabase(database));
168 delete self->database;
    [all...]
  /external/python/cpython2/Modules/_sqlite/
module.c 53 static char *kwlist[] = {"database", "timeout", "detect_types", "isolation_level", "check_same_thread", "factory", "cached_statements", NULL, NULL};
54 PyObject* database; local
65 &database, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statements))
80 "connect(database[, timeout, isolation_level, detect_types, factory])\n\
82 Opens a connection to the SQLite database file *database*. You can use\n\
83 \":memory:\" to open a database connection to a database that resides in\n\
  /external/python/cpython3/Modules/_sqlite/
module.c 54 "database", "timeout", "detect_types", "isolation_level",
58 char* database; local
70 &database, &timeout, &detect_types,
87 "connect(database[, timeout, detect_types, isolation_level,\n\
90 Opens a connection to the SQLite database file *database*. You can use\n\
91 \":memory:\" to open a database connection to a database that resides in\n\
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteDatabase.java 4 import android.database.Cursor;
5 import android.database.DatabaseUtils;
6 import android.database.sqlite.*;
31 * Shadow for {@code SQLiteDatabase} that simulates the movement of a {@code Cursor} through database tables.
32 * Implemented as a wrapper around an embedded SQL database, accessed via JDBC. The JDBC connection is
79 throw new android.database.SQLException();
183 public void execSQL(String sql) throws android.database.SQLException {
185 throw new IllegalStateException("database not open");
192 android.database.SQLException ase = new android.database.SQLException()
    [all...]
  /external/robolectric/v1/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/apct-tests/perftests/core/src/android/database/
SQLiteDatabaseIoPerfTest.java 17 package android.database;
22 import android.database.sqlite.SQLiteDatabase;
48 * <p>To run: bit CorePerfTests:android.database.SQLiteDatabaseIoPerfTest

Completed in 316 milliseconds

1 2 3 4 5 67 8 91011>>