/frameworks/base/core/tests/coretests/src/android/database/ |
DatabaseLockTest.java | 17 package android.database; 19 import android.database.sqlite.SQLiteDatabase; 27 * This is a series of unit tests for database locks. 64 * attempting to access a database concurrently. 66 * same database at the same time with the same prioritization, neither thread 67 * is locked out and prevented from accessing the database. 114 * testLockLatency() tests the latency of database locks. 116 * the same database, the locking/unlocking of the database is done within an
|
/frameworks/support/room/testing/src/main/java/androidx/room/testing/ |
MigrationTestHelper.java | 21 import android.database.Cursor; 57 * A class that can be used in your Instrumentation tests that can create the database in an 89 * (falls back to the app resources) and the target context to create the database. 100 * (falls back to the app resources) and the target context to create the database. 123 * Creates the database in the given version. 124 * If the database file already exists, it tries to delete it first. If delete fails, throws 127 * @param name The name of the database. 128 * @param version The version in which the database should be created. 129 * @return A database connection which has the schema in the requested version. 136 Log.d(TAG, "deleting database file " + name) [all...] |
/frameworks/support/work/workmanager/src/main/java/androidx/work/impl/ |
WorkDatabaseMigrations.java | 69 public void migrate(@NonNull SupportSQLiteDatabase database) { 70 database.execSQL(CREATE_SYSTEM_ID_INFO); 71 database.execSQL(MIGRATE_ALARM_INFO_TO_SYSTEM_ID_INFO); 72 database.execSQL(REMOVE_ALARM_INFO); 73 database.execSQL("INSERT INTO worktag(tag, work_spec_id) " 84 public void migrate(@NonNull SupportSQLiteDatabase database) { 85 database.execSQL(CREATE_ALARM_INFO); 86 database.execSQL(MIGRATE_SYSTEM_ID_INFO_TO_ALARM_INFO); 87 database.execSQL(REMOVE_SYSTEM_ID_INFO);
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/ |
pwd.so | |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/ |
Xresource.h | 179 XrmDatabase /* database */ 183 XrmDatabase* /* database */, 191 XrmDatabase* /* database */, 198 XrmDatabase* /* database */, 205 XrmDatabase* /* database */, 211 XrmDatabase* /* database */, 216 XrmDatabase /* database */, 224 XrmDatabase /* database */, 232 XrmDatabase /* database */, 249 * Resource Database Managemen [all...] |
/cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/db/ |
Database.java | 21 import android.database.Cursor; 22 import android.database.sqlite.SQLiteDatabase; 23 import android.database.sqlite.SQLiteOpenHelper; 29 * Abstraction of SQLite database. 31 public abstract class Database { 35 public Database(final Context context, final String name, final int version) {
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiHiiLib/ |
HiiLanguage.c | 20 of languages that an HII handle in the HII Database supports. The returned
23 the language format assumed the HII Database.
27 @param[in] HiiHandle A handle that was previously registered in the HII Database.
29 @retval NULL HiiHandle is not registered in the HII database
59 // in the HII Database
63 // Return NULL if the size can not be retrieved, or if HiiHandle is not in the HII Database
|
/external/autotest/frontend/ |
setup_test_environment.py | 5 # we need to set DATABASE_ENGINE now, at import time, before the Django database 27 """Call syncdb command to make sure database schema is uptodate. 33 database='readonly') 35 database='global') 37 database='server') 41 """Close all connection to the test database.
|
/external/clang/include/clang/Tooling/ |
CompilationDatabase.h | 21 // compilation database from the root of the build tree. 73 /// A compilation database allows the user to retrieve all compile command lines 81 /// \brief Loads a compilation database from a build directory. 83 /// Looks at the specified 'BuildDirectory' and creates a compilation database 88 /// compilation database for the build directory. 96 /// \brief Tries to detect a compilation database location and load it. 98 /// Looks for a compilation database in all parent paths of file 'SourceFile' 103 /// \brief Tries to detect a compilation database location and load it. 105 /// Looks for a compilation database in directory 'SourceDir' and all 117 /// A compilation database representing the project would return both comman [all...] |
/external/e2fsprogs/lib/et/test_cases/ |
heimdal2.et | 29 ec KADM_NO_SERV, "Could not find service name in services database" 37 ec KADM_INUSE, "Entry already exists in database" 38 ec KADM_UK_SERROR, "Database store error" 39 ec KADM_UK_RERROR, "Database read error" 43 ec KADM_NOENTRY, "No such entry in the database" 51 ec KADM_DB_INUSE, "Database is locked or in use--try again later"
|
/frameworks/base/core/java/android/database/sqlite/ |
package.html | 3 Contains the SQLite database management 4 classes that an application would use to manage its own private database. 8 manage your own database to store content. See <a 12 instead use the generic {@link android.database} classes. 16 database tool. On your development machine, run the tool from the 39 <li>Create and query an in-memory database as shown in the following code sample:
|
/frameworks/support/persistence/db/src/main/java/androidx/sqlite/db/ |
SupportSQLiteStatement.java | 20 * An interface to map the behavior of {@link android.database.sqlite.SQLiteStatement}. 28 * @throws android.database.SQLException If the SQL string is invalid for 38 * @throws android.database.SQLException If the SQL string is invalid for 49 * @throws android.database.SQLException If the SQL string is invalid for 60 * @throws android.database.sqlite.SQLiteDoneException if the query returns zero rows 69 * @throws android.database.sqlite.SQLiteDoneException if the query returns zero rows
|
/frameworks/support/room/migration/src/main/java/androidx/room/migration/bundle/ |
DatabaseBundle.java | 30 * {@link androidx.room.Database Database}. 48 * Creates a new database 62 * @return The identity has of the Database. 69 * @return The database version. 97 * @return List of SQL queries to build this database from scratch.
|
/packages/apps/Email/provider_src/com/android/email/provider/ |
AccountBackupRestore.java | 25 * Account backup/restore was implemented entirely for the purpose of recovering from database 27 * is that this is due to some kind of memory issue). Rather than have the offending database get 30 * accounts in the database and 2) there are backup accounts. This, at least, would cause user's 34 * backup version of the Account and HostAuth tables in a second database (EmailProviderBackup.db) 37 * determining whether or not a "corrupt" database is truly corrupt; the problem here is that it 43 * Backup user Account and HostAuth data into our backup database
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Tooling/ |
CompilationDatabase.h | 21 // compilation database from the root of the build tree. 77 /// A compilation database allows the user to retrieve all compile command lines 85 /// \brief Loads a compilation database from a build directory. 87 /// Looks at the specified 'BuildDirectory' and creates a compilation database 92 /// compilation database for the build directory. 100 /// \brief Tries to detect a compilation database location and load it. 102 /// Looks for a compilation database in all parent paths of file 'SourceFile' 107 /// \brief Tries to detect a compilation database location and load it. 109 /// Looks for a compilation database in directory 'SourceDir' and all 121 /// A compilation database representing the project would return both comman [all...] |
/prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Tooling/ |
CompilationDatabase.h | 21 // compilation database from the root of the build tree. 67 /// A compilation database allows the user to retrieve all compile command lines 75 /// \brief Loads a compilation database from a build directory. 77 /// Looks at the specified 'BuildDirectory' and creates a compilation database 82 /// compilation database for the build directory. 90 /// \brief Tries to detect a compilation database location and load it. 92 /// Looks for a compilation database in all parent paths of file 'SourceFile' 97 /// \brief Tries to detect a compilation database location and load it. 99 /// Looks for a compilation database in directory 'SourceDir' and all 111 /// A compilation database representing the project would return both comman [all...] |
/prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Tooling/ |
CompilationDatabase.h | 21 // compilation database from the root of the build tree. 67 /// A compilation database allows the user to retrieve all compile command lines 75 /// \brief Loads a compilation database from a build directory. 77 /// Looks at the specified 'BuildDirectory' and creates a compilation database 82 /// compilation database for the build directory. 90 /// \brief Tries to detect a compilation database location and load it. 92 /// Looks for a compilation database in all parent paths of file 'SourceFile' 97 /// \brief Tries to detect a compilation database location and load it. 99 /// Looks for a compilation database in directory 'SourceDir' and all 111 /// A compilation database representing the project would return both comman [all...] |
/prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Tooling/ |
CompilationDatabase.h | 21 // compilation database from the root of the build tree. 67 /// A compilation database allows the user to retrieve all compile command lines 75 /// \brief Loads a compilation database from a build directory. 77 /// Looks at the specified 'BuildDirectory' and creates a compilation database 82 /// compilation database for the build directory. 90 /// \brief Tries to detect a compilation database location and load it. 92 /// Looks for a compilation database in all parent paths of file 'SourceFile' 97 /// \brief Tries to detect a compilation database location and load it. 99 /// Looks for a compilation database in directory 'SourceDir' and all 111 /// A compilation database representing the project would return both comman [all...] |
/prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Tooling/ |
CompilationDatabase.h | 21 // compilation database from the root of the build tree. 67 /// A compilation database allows the user to retrieve all compile command lines 75 /// \brief Loads a compilation database from a build directory. 77 /// Looks at the specified 'BuildDirectory' and creates a compilation database 82 /// compilation database for the build directory. 90 /// \brief Tries to detect a compilation database location and load it. 92 /// Looks for a compilation database in all parent paths of file 'SourceFile' 97 /// \brief Tries to detect a compilation database location and load it. 99 /// Looks for a compilation database in directory 'SourceDir' and all 111 /// A compilation database representing the project would return both comman [all...] |
/prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Tooling/ |
CompilationDatabase.h | 21 // compilation database from the root of the build tree. 67 /// A compilation database allows the user to retrieve all compile command lines 75 /// \brief Loads a compilation database from a build directory. 77 /// Looks at the specified 'BuildDirectory' and creates a compilation database 82 /// compilation database for the build directory. 90 /// \brief Tries to detect a compilation database location and load it. 92 /// Looks for a compilation database in all parent paths of file 'SourceFile' 97 /// \brief Tries to detect a compilation database location and load it. 99 /// Looks for a compilation database in directory 'SourceDir' and all 111 /// A compilation database representing the project would return both comman [all...] |
/prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Tooling/ |
CompilationDatabase.h | 21 // compilation database from the root of the build tree. 67 /// A compilation database allows the user to retrieve all compile command lines 75 /// \brief Loads a compilation database from a build directory. 77 /// Looks at the specified 'BuildDirectory' and creates a compilation database 82 /// compilation database for the build directory. 90 /// \brief Tries to detect a compilation database location and load it. 92 /// Looks for a compilation database in all parent paths of file 'SourceFile' 97 /// \brief Tries to detect a compilation database location and load it. 99 /// Looks for a compilation database in directory 'SourceDir' and all 111 /// A compilation database representing the project would return both comman [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Tooling/ |
CompilationDatabase.h | 21 // compilation database from the root of the build tree. 77 /// A compilation database allows the user to retrieve all compile command lines 85 /// \brief Loads a compilation database from a build directory. 87 /// Looks at the specified 'BuildDirectory' and creates a compilation database 92 /// compilation database for the build directory. 100 /// \brief Tries to detect a compilation database location and load it. 102 /// Looks for a compilation database in all parent paths of file 'SourceFile' 107 /// \brief Tries to detect a compilation database location and load it. 109 /// Looks for a compilation database in directory 'SourceDir' and all 121 /// A compilation database representing the project would return both comman [all...] |
/prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Tooling/ |
CompilationDatabase.h | 21 // compilation database from the root of the build tree. 67 /// A compilation database allows the user to retrieve all compile command lines 75 /// \brief Loads a compilation database from a build directory. 77 /// Looks at the specified 'BuildDirectory' and creates a compilation database 82 /// compilation database for the build directory. 90 /// \brief Tries to detect a compilation database location and load it. 92 /// Looks for a compilation database in all parent paths of file 'SourceFile' 97 /// \brief Tries to detect a compilation database location and load it. 99 /// Looks for a compilation database in directory 'SourceDir' and all 111 /// A compilation database representing the project would return both comman [all...] |
/prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Tooling/ |
CompilationDatabase.h | 21 // compilation database from the root of the build tree. 67 /// A compilation database allows the user to retrieve all compile command lines 75 /// \brief Loads a compilation database from a build directory. 77 /// Looks at the specified 'BuildDirectory' and creates a compilation database 82 /// compilation database for the build directory. 90 /// \brief Tries to detect a compilation database location and load it. 92 /// Looks for a compilation database in all parent paths of file 'SourceFile' 97 /// \brief Tries to detect a compilation database location and load it. 99 /// Looks for a compilation database in directory 'SourceDir' and all 111 /// A compilation database representing the project would return both comman [all...] |
/prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Tooling/ |
CompilationDatabase.h | 21 // compilation database from the root of the build tree. 67 /// A compilation database allows the user to retrieve all compile command lines 75 /// \brief Loads a compilation database from a build directory. 77 /// Looks at the specified 'BuildDirectory' and creates a compilation database 82 /// compilation database for the build directory. 90 /// \brief Tries to detect a compilation database location and load it. 92 /// Looks for a compilation database in all parent paths of file 'SourceFile' 97 /// \brief Tries to detect a compilation database location and load it. 99 /// Looks for a compilation database in directory 'SourceDir' and all 111 /// A compilation database representing the project would return both comman [all...] |