/external/autotest/database/ |
D | database_connection.py | 37 def connect(self, host=None, username=None, password=None, db_name=None): argument 71 def connect(self, host=None, username=None, password=None, db_name=None): argument 77 host=host, user=username, passwd=password, db=db_name, 94 def connect(self, host=None, username=None, password=None, db_name=None): argument 95 self._connection = self._database_module.connect(db_name) 124 def connect(self, host=None, username=None, password=None, db_name=None): argument 211 password=None, db_name=None): argument 224 self.db_name = self._get_option('db_name', db_name) 260 db_name=self.db_name) 276 db_name=None, try_reconnecting=None): argument [all …]
|
D | database_connection_unittest.py | 17 db_name=_DB_NAME) 69 password=_PASS, db_name=_DB_NAME)
|
/external/oss-fuzz/projects/postgresql/fuzzer/ |
D | dbfuzz.c | 92 char *db_name = "./dbfuzz"; in main() local 95 pg_logging_init(db_name); in main() 96 progname = get_progname(db_name); in main() 97 set_pglocale_pgservice(db_name, PG_TEXTDOMAIN("pg_dbfuzz")); in main()
|
/external/python/cpython2/Lib/bsddb/test/ |
D | test_cursor_pget_bug.py | 11 db_name = 'test-cursor_pget.db' variable in pget_bugTestCase 18 self.primary_db.open(self.db_name, 'primary', db.DB_BTREE, db.DB_CREATE) 21 self.secondary_db.open(self.db_name, 'secondary', db.DB_BTREE, db.DB_CREATE)
|
D | test_dbobj.py | 12 db_name = 'test-dbobj.db' variable in dbobjTestCase 34 self.db.open(self.db_name, db.DB_HASH, db.DB_CREATE) 47 self.db.open(self.db_name+'02', db.DB_HASH, db.DB_CREATE)
|
D | test_pickle.py | 22 db_name = 'test-dbobj.db' variable in pickleTestCase 38 self.db.open(self.db_name, db.DB_HASH, db.DB_CREATE)
|
D | test_dbtables.py | 39 db_name = 'test-table.db' variable in TableDBTestCase
|
/external/rust/crates/rusqlite/src/ |
D | inner_connection.rs | 323 pub fn db_readonly(&self, db_name: super::DatabaseName<'_>) -> Result<bool> { in db_readonly() 324 let name = db_name.as_cstring()?; in db_readonly() 331 Some(format!("{:?} is not the name of a database", db_name)), in db_readonly() 343 db_name: Option<super::DatabaseName<'_>>, in txn_state() 345 let r = if let Some(ref name) = db_name { in txn_state() 357 Some(format!("{:?} is not the name of a valid schema", db_name)), in txn_state()
|
D | transaction.rs | 523 db_name: Option<crate::DatabaseName<'_>>, in transaction_state() 525 self.db.borrow().txn_state(db_name) in transaction_state()
|
D | lib.rs | 980 pub fn is_readonly(&self, db_name: DatabaseName<'_>) -> Result<bool> { in is_readonly() 981 self.db.borrow().db_readonly(db_name) in is_readonly() 1181 let db_name = DatabaseName::Main.as_cstring().unwrap(); in db_filename() localVariable 1182 let db_filename = ffi::sqlite3_db_filename(db, db_name.as_ptr()); in db_filename()
|
D | hooks.rs | 606 db_name: *const c_char, in authorizer() 620 database_name: expect_optional_utf8(db_name, "database name"), in authorizer()
|
/external/cronet/crypto/ |
D | nss_util_chromeos.cc | 156 ScopedPK11Slot OpenPersistentNSSDBForPath(const std::string& db_name, in OpenPersistentNSSDBForPath() argument 169 return OpenSoftwareNSSDB(nssdb_path, db_name); in OpenPersistentNSSDBForPath() 291 std::string db_name = base::StringPrintf("%s %s", kUserNSSDatabaseName, in InitializeNSSForChromeOSUser() local 293 ScopedPK11Slot public_slot(OpenPersistentNSSDBForPath(db_name, path)); in InitializeNSSForChromeOSUser()
|
/external/libchrome/crypto/ |
D | nss_util.cc | 264 ScopedPK11Slot OpenPersistentNSSDBForPath(const std::string& db_name, in OpenPersistentNSSDBForPath() argument 277 return OpenSoftwareNSSDB(nssdb_path, db_name); in OpenPersistentNSSDBForPath() 446 std::string db_name = base::StringPrintf( in InitializeNSSForChromeOSUser() local 448 ScopedPK11Slot public_slot(OpenPersistentNSSDBForPath(db_name, path)); in InitializeNSSForChromeOSUser()
|
/external/sqlite/dist/ |
D | sqlite3ext.h | 359 const char *(*db_name)(sqlite3*,int); member 683 #define sqlite3_db_name sqlite3_api->db_name
|
D | sqlite3.c | 129869 const char *(*db_name)(sqlite3*,int); 130193 #define sqlite3_db_name sqlite3_api->db_name
|
/external/sqlite/dist/orig/ |
D | sqlite3ext.h | 359 const char *(*db_name)(sqlite3*,int); member 683 #define sqlite3_db_name sqlite3_api->db_name
|
D | sqlite3.c | 129853 const char *(*db_name)(sqlite3*,int); 130177 #define sqlite3_db_name sqlite3_api->db_name
|
/external/libchrome/libchrome_tools/patches/ |
D | libchrome-Update-crypto.patch | 86 ScopedPK11Slot public_slot(OpenPersistentNSSDBForPath(db_name, path));
|
/external/autotest/tko/ |
D | parse.py | 711 database=options.db_name)
|