HomeSort by relevance Sort by last modified time
    Searched full:database (Results 401 - 425 of 6564) sorted by null

<<11121314151617181920>>

  /external/python/cpython3/Doc/library/
pwd.rst 1 :mod:`pwd` --- The password database
6 :synopsis: The password database (getpwnam() and friends).
10 This module provides access to the Unix user account and password database. It
13 Password database entries are reported as a tuple-like object, whose attributes
56 Return the password database entry for the given numeric user ID.
61 Return the password database entry for the given user name.
66 Return a list of all available password database entries, in arbitrary order.
72 An interface to the group database, similar to this.
75 An interface to the shadow password database, similar to this.
spwd.rst 1 :mod:`spwd` --- The shadow password database
6 :synopsis: The shadow password database (getspnam() and friends).
10 This module provides access to the Unix shadow password database. It is
13 You must have enough privileges to access the shadow password database (this
16 Shadow password database entries are reported as a tuple-like object, whose
56 Return the shadow password database entry for the given user name.
64 Return a list of all available shadow password database entries, in arbitrary
71 An interface to the group database, similar to this.
74 An interface to the normal password database, similar to this.
  /external/python/cpython3/Lib/sqlite3/
dump.py 12 Returns an iterator to the dump of the database in an SQL text format.
14 Used to produce an SQL dump of the database. Useful to save an in-memory
15 database for later restoration. This function should not be called
22 # sqlite_master table contains the SQL CREATE statements for the database.
  /external/python/cpython3/Modules/clinic/
_dbmmodule.c.h 9 "Close the database.");
27 "Return a list of all keys in the database.");
78 "If key is not in the database, it is inserted with default as the value.");
110 "Return a database object.\n"
  /external/python/cpython3/Modules/
pwdmodule.c 40 "This module provides access to the Unix password database.\n\
43 Password database entries are reported as 7-tuples containing the following\n\
44 items from the password database (see `<pwd.h>'), in order:\n\
110 Return the password database entry for the given numeric user ID.
112 See `help(pwd)` for more on password database entries.
146 Return the password database entry for the given user name.
148 See `help(pwd)` for more on password database entries.
178 Return a list of all available password database entries, in arbitrary order.
180 See help(pwd) for more on password database entries.
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteCloseable.java 3 import android.database.sqlite.SQLiteClosable;
  /external/selinux/libsemanage/src/
boolean_internal.h 8 #include "database.h"
database_activedb.h 6 #include "database.h"
fcontext_internal.h 8 #include "database.h"
iface_internal.h 7 #include "database.h"
seuser_internal.h 8 #include "database.h"
  /frameworks/base/core/java/android/database/
CursorWindow.aidl 17 package android.database;
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDebug.java 17 package android.database.sqlite;
61 * True to enable database performance testing instrumentation.
112 /** a list of {@link DbStats} - one for each main database opened by the applications
119 * contains statistics about a database
123 /** name of the database */
126 /** the page size for the database */
129 /** the database size */
150 * return all pager and database stats for the current process.
163 * @param printer The printer for dumping database state.
SqliteWrapper.java 18 package android.database.sqlite;
23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteException;
36 = "unable to open database file";
  /frameworks/base/core/tests/coretests/apks/version/src/com/android/frameworks/coretests/version_test/
NullProvider.java 5 import android.database.Cursor;
  /frameworks/base/core/tests/coretests/apks/version_nosys/src/com/android/frameworks/coretests/version_test/
NullProvider.java 5 import android.database.Cursor;
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
PipeManager.java 36 PipeManager(MtpDatabase database) {
37 this(database, Executors.newSingleThreadExecutor());
40 PipeManager(MtpDatabase database, ExecutorService executor) {
41 this.mDatabase = database;
  /frameworks/base/telephony/java/com/android/internal/telephony/
ISub.aidl 25 * @return a list of all subscriptions in the database, this includes
32 * @return the count of all subscriptions in the database, this includes
39 * @param subId The unique SubscriptionInfo key in database
111 * Add a new SubscriptionInfo to subinfo database if needed
121 * @param subId the unique SubscriptionInfo index in database
129 * @param subId the unique SubscriptionInfo index in database
137 * @param subId the unique SubscriptionInfo index in database
146 * @param subId the unique SubscriptionInfo index in database
154 * @param subId the unique SubscriptionInfo index in database
  /frameworks/support/persistence/db/api/
current.txt 15 method public abstract void beginTransactionWithListener(android.database.sqlite.SQLiteTransactionListener);
16 method public abstract void beginTransactionWithListenerNonExclusive(android.database.sqlite.SQLiteTransactionListener);
22 method public abstract void execSQL(java.lang.String) throws android.database.SQLException;
23 method public abstract void execSQL(java.lang.String, java.lang.Object[]) throws android.database.SQLException;
30 method public abstract long insert(java.lang.String, int, android.content.ContentValues) throws android.database.SQLException;
37 method public abstract android.database.Cursor query(java.lang.String);
38 method public abstract android.database.Cursor query(java.lang.String, java.lang.Object[]);
39 method public abstract android.database.Cursor query(androidx.sqlite.db.SupportSQLiteQuery);
40 method public abstract android.database.Cursor query(androidx.sqlite.db.SupportSQLiteQuery, android.os.CancellationSignal);
  /frameworks/support/room/integration-tests/kotlintestapp/schemas/androidx.room.integration.kotlintestapp.migration.MigrationDbKotlin/
1.json 3 "database": {
  /frameworks/support/room/integration-tests/testapp/schemas/androidx.room.integration.testapp.migration.MigrationDb/
1.json 3 "database": {
  /frameworks/support/room/migration/src/main/java/androidx/room/migration/bundle/
SchemaBundle.java 35 * Data class that holds the information about a database schema export.
44 @SerializedName("database")
55 public SchemaBundle(int formatVersion, DatabaseBundle database) {
57 mDatabase = database;
  /frameworks/support/room/runtime/src/main/java/androidx/room/
SharedSQLiteStatement.java 46 * @param database The database to create the statement in.
48 public SharedSQLiteStatement(RoomDatabase database) {
49 mDatabase = database;
  /packages/apps/Dialer/java/com/android/dialer/blocking/
FilteredNumberProvider.java 23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteDatabase;
25 import android.database.sqlite.SQLiteQueryBuilder;
30 import com.android.dialer.database.Database;
31 import com.android.dialer.database.DialerDatabaseHelper;
32 import com.android.dialer.database.FilteredNumberContract;
33 import com.android.dialer.database.FilteredNumberContract.FilteredNumberColumns;
46 dialerDatabaseHelper = Database.get(getContext()).getDatabaseHelper(getContext());
  /packages/apps/Dialer/java/com/android/dialer/smartdial/
SmartDialCursorLoader.java 21 import android.database.Cursor;
22 import android.database.MatrixCursor;
25 import com.android.dialer.database.Database;
26 import com.android.dialer.database.DialerDatabaseHelper;
27 import com.android.dialer.database.DialerDatabaseHelper.ContactNumber;
69 * Queries the SmartDial database and loads results in background.
83 /** Loads results from the database helper. */
85 Database.get(context).getDatabaseHelper(context);

Completed in 6415 milliseconds

<<11121314151617181920>>