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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteCursorTest.java 17 package android.database.sqlite.cts;
21 import android.database.AbstractCursor;
22 import android.database.AbstractWindowedCursor;
23 import android.database.Cursor;
24 import android.database.CursorWindow;
25 import android.database.DataSetObserver;
26 import android.database.SQLException;
27 import android.database.StaleDataException;
28 import android.database.sqlite.SQLiteBlobTooBigException;
29 import android.database.sqlite.SQLiteCursor
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
connection.c 62 static char *kwlist[] = {"database", "timeout", "detect_types", "isolation_level", "check_same_thread", "factory", "cached_statements", NULL, NULL};
64 PyObject* database; local
78 &database, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statements))
97 if (PyString_Check(database) || PyUnicode_Check(database)) {
98 if (PyString_Check(database)) {
99 database_utf8 = database;
102 database_utf8 = PyUnicode_AsUTF8String(database);
120 class_attr = PyObject_GetAttrString(database, "__class__");
129 self->db = ((pysqlite_Connection*)database)->db;
    [all...]
  /external/python/cpython2/Modules/_sqlite/
connection.c 62 static char *kwlist[] = {"database", "timeout", "detect_types", "isolation_level", "check_same_thread", "factory", "cached_statements", NULL, NULL};
64 PyObject* database; local
78 &database, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statements))
97 if (PyString_Check(database) || PyUnicode_Check(database)) {
98 if (PyString_Check(database)) {
99 database_utf8 = database;
102 database_utf8 = PyUnicode_AsUTF8String(database);
120 class_attr = PyObject_GetAttrString(database, "__class__");
129 self->db = ((pysqlite_Connection*)database)->db
    [all...]
  /external/python/cpython3/Modules/_sqlite/
connection.c 73 "database", "timeout", "detect_types", "isolation_level",
78 char* database; local
89 &database, &timeout, &detect_types,
112 rc = sqlite3_open_v2(database, &self->db,
121 rc = sqlite3_open(database, &self->db);
364 PyErr_SetString(pysqlite_ProgrammingError, "Cannot operate on a closed database.");
    [all...]
  /frameworks/base/media/jni/
android_mtp_MtpDatabase.cpp 94 IMtpDatabase* getMtpDatabase(JNIEnv *env, jobject database) {
95 return (IMtpDatabase *)env->GetLongField(database, field_context);
1319 MtpDatabase* database = new MtpDatabase(env, thiz); local
1327 MtpDatabase* database = (MtpDatabase *)env->GetLongField(thiz, field_context); local
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/database/
SimContactDaoTests.java 16 package com.android.contacts.database;
39 import android.database.Cursor;
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 48 import android.database.Cursor;
49 import android.database.DatabaseUtils;
50 import android.database.MatrixCursor;
51 import android.database.sqlite.SQLiteDatabase;
52 import android.database.sqlite.SQLiteOpenHelper;
53 import android.database.sqlite.SQLiteQueryBuilder;
277 // If secondary external storage is ejected, then we delete all database
279 DatabaseHelper database;
283 database = mDatabases.get(EXTERNAL_VOLUME);
286 if (database != null)
2523 DatabaseHelper database = getDatabaseForUri( local
3230 DatabaseHelper database = getDatabaseForUri( local
3273 DatabaseHelper database = getDatabaseForUri(uri); local
3938 DatabaseHelper database = getDatabaseForUri(uri); local
3986 DatabaseHelper database = getDatabaseForUri(uri); local
4926 DatabaseHelper database = mDatabases.get(volume); local
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/24.4.0-alpha1/
lint-24.4.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/24.4.0-beta3/
lint-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/24.4.0-beta5/
lint-24.4.0-beta5.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/24.4.0-beta6/
lint-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/26.0.0/
lint-26.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/26.0.0-beta6/
lint-26.0.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/26.0.0-beta7/
lint-26.0.0-beta7.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/26.0.0-rc1/
lint-26.0.0-rc1.jar 
  /cts/tests/tests/database/src/android/database/cts/
AbstractCursorTest.java 17 package android.database.cts;
20 import android.database.AbstractCursor;
21 import android.database.CharArrayBuffer;
22 import android.database.ContentObserver;
23 import android.database.CursorIndexOutOfBoundsException;
24 import android.database.CursorWindow;
25 import android.database.DataSetObserver;
26 import android.database.sqlite.SQLiteDatabase;
  /frameworks/base/core/java/android/database/
DatabaseUtils.java 17 package android.database;
22 import android.database.sqlite.SQLiteAbortException;
23 import android.database.sqlite.SQLiteConstraintException;
24 import android.database.sqlite.SQLiteDatabase;
25 import android.database.sqlite.SQLiteDatabaseCorruptException;
26 import android.database.sqlite.SQLiteDiskIOException;
27 import android.database.sqlite.SQLiteException;
28 import android.database.sqlite.SQLiteFullException;
29 import android.database.sqlite.SQLiteProgram;
30 import android.database.sqlite.SQLiteStatement
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteConnection.java 17 package android.database.sqlite;
19 import android.database.Cursor;
20 import android.database.CursorWindow;
21 import android.database.DatabaseUtils;
22 import android.database.sqlite.SQLiteDebug.DbStats;
42 * Represents a SQLite database connection.
45 * When database connection pooling is enabled, there can be multiple active
46 * connections to the same database. Otherwise there is typically only one
47 * connection per database.
50 * can concurrently access the database. Without WAL, readers and writer
    [all...]
SQLiteConnectionPool.java 17 package android.database.sqlite;
19 import android.database.sqlite.SQLiteDebug.DbStats;
45 * Maintains a pool of active SQLite database connections.
143 * operations to be serialized by locking the primary database connection.
156 * of the database connection request.
182 * Opens a connection pool for the specified database.
184 * @param configuration The database configuration.
187 * @throws SQLiteException if a database error occurs.
203 // This might throw if the database is corrupt.
267 * Reconfigures the database configuration of the connection pool and all of it
    [all...]
SQLiteDatabase.java 17 package android.database.sqlite;
25 import android.database.Cursor;
26 import android.database.DatabaseErrorHandler;
27 import android.database.DatabaseUtils;
28 import android.database.DefaultDatabaseErrorHandler;
29 import android.database.SQLException;
30 import android.database.sqlite.SQLiteDebug.DbStats;
57 * Exposes methods to manage a SQLite database.
61 * perform other common database management tasks.
64 * and managing a database
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseGeneralTest.java 17 package android.database;
19 import static android.database.DatabaseUtils.InsertHelper.TABLE_INFO_PRAGMA_COLUMNNAME_INDEX;
20 import static android.database.DatabaseUtils.InsertHelper.TABLE_INFO_PRAGMA_DEFAULT_INDEX;
24 import android.database.sqlite.SQLiteDatabase;
25 import android.database.sqlite.SQLiteDebug;
26 import android.database.sqlite.SQLiteException;
47 * Usage: bit FrameworksCoreTests:android.database.DatabaseGeneralTest
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/database/
DialerDatabaseHelper.java 17 package com.android.dialer.database;
23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteDatabase;
25 import android.database.sqlite.SQLiteException;
26 import android.database.sqlite.SQLiteOpenHelper;
27 import android.database.sqlite.SQLiteStatement;
44 import com.android.dialer.common.database.Selection;
46 import com.android.dialer.database.FilteredNumberContract.FilteredNumberColumns;
56 * Database helper for smart dial. Designed as a singleton to make sure there is only one access
57 * point to the database. Provides methods to maintain, update, and query the database
    [all...]
  /prebuilts/maven_repo/android/android/arch/persistence/room/migration/1.0.0/
migration-1.0.0.jar 
  /prebuilts/maven_repo/android/android/arch/persistence/room/migration/1.0.0-alpha10/
migration-1.0.0-alpha10.jar 
  /prebuilts/maven_repo/android/android/arch/persistence/room/migration/1.0.0-rc1/
migration-1.0.0-rc1.jar 

Completed in 852 milliseconds

1 2 3 4 5 6 7 8 91011>>