Searched defs:database (Results 76 - 85 of 85) sorted by relevance

1234

/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabasePerformanceTests.java17 package android.database;
23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteDatabase;
H A DNewDatabasePerformanceTests.java17 package android.database;
20 import android.database.sqlite.SQLiteDatabase;
/frameworks/base/core/java/android/database/
H A DAbstractCursor.java17 package android.database;
H A DCursorWindow.java17 package android.database;
22 import android.database.sqlite.SQLiteClosable;
23 import android.database.sqlite.SQLiteException;
H A DDatabaseUtils.java17 package android.database;
24 import android.database.sqlite.SQLiteAbortException;
25 import android.database.sqlite.SQLiteConstraintException;
26 import android.database.sqlite.SQLiteDatabase;
27 import android.database.sqlite.SQLiteDatabaseCorruptException;
28 import android.database.sqlite.SQLiteDiskIOException;
29 import android.database.sqlite.SQLiteException;
30 import android.database.sqlite.SQLiteFullException;
31 import android.database.sqlite.SQLiteProgram;
32 import android.database
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java17 package android.database.sqlite;
21 import android.database.sqlite.SQLiteDebug.DbStats;
37 * Maintains a pool of active SQLite database connections.
130 * operations to be serialized by locking the primary database connection.
143 * of the database connection request.
163 * Opens a connection pool for the specified database.
165 * @param configuration The database configuration.
168 * @throws SQLiteException if a database error occurs.
184 // This might throw if the database is corrupt.
242 * Reconfigures the database configuratio
[all...]
H A DSQLiteDatabase.java17 package android.database.sqlite;
20 import android.database.Cursor;
21 import android.database.DatabaseErrorHandler;
22 import android.database.DatabaseUtils;
23 import android.database.DefaultDatabaseErrorHandler;
24 import android.database.SQLException;
25 import android.database.sqlite.SQLiteDebug.DbStats;
47 * Exposes methods to manage a SQLite database.
51 * perform other common database management tasks.
54 * and managing a database
[all...]
H A DSQLiteConnection.java17 package android.database.sqlite;
22 import android.database.Cursor;
23 import android.database.CursorWindow;
24 import android.database.DatabaseUtils;
25 import android.database.sqlite.SQLiteDebug.DbStats;
40 * Represents a SQLite database connection.
43 * When database connection pooling is enabled, there can be multiple active
44 * connections to the same database. Otherwise there is typically only one
45 * connection per database.
48 * can concurrently access the database
[all...]
/frameworks/av/media/mtp/
H A DMtpServer.cpp98 MtpServer::MtpServer(int fd, MtpDatabase* database, bool ptp, argument
101 mDatabase(database),
316 // FIXME - need to delete mSendObjectHandle from the database
688 // if object is being edited the database size may be out of date
1057 // Don't delete the actual files unless the database deletion is allowed
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpDatabase.cpp78 MtpDatabase* getMtpDatabase(JNIEnv *env, jobject database) { argument
79 return (MtpDatabase *)env->GetIntField(database, field_context);
1075 MyMtpDatabase* database = new MyMtpDatabase(env, thiz); local
1076 env->SetIntField(thiz, field_context, (int)database);
1083 MyMtpDatabase* database = (MyMtpDatabase *)env->GetIntField(thiz, field_context); local
1084 database->cleanup(env);
1085 delete database;

Completed in 199 milliseconds

1234