Home
last modified time | relevance | path

Searched refs:db_name (Results 1 – 19 of 19) sorted by relevance

/external/autotest/database/
Ddatabase_connection.py37 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 …]
Ddatabase_connection_unittest.py17 db_name=_DB_NAME)
69 password=_PASS, db_name=_DB_NAME)
/external/oss-fuzz/projects/postgresql/fuzzer/
Ddbfuzz.c92 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/
Dtest_cursor_pget_bug.py11 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)
Dtest_dbobj.py12 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)
Dtest_pickle.py22 db_name = 'test-dbobj.db' variable in pickleTestCase
38 self.db.open(self.db_name, db.DB_HASH, db.DB_CREATE)
Dtest_dbtables.py39 db_name = 'test-table.db' variable in TableDBTestCase
/external/rust/crates/rusqlite/src/
Dinner_connection.rs323 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()
Dtransaction.rs523 db_name: Option<crate::DatabaseName<'_>>, in transaction_state()
525 self.db.borrow().txn_state(db_name) in transaction_state()
Dlib.rs980 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()
Dhooks.rs606 db_name: *const c_char, in authorizer()
620 database_name: expect_optional_utf8(db_name, "database name"), in authorizer()
/external/cronet/crypto/
Dnss_util_chromeos.cc156 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/
Dnss_util.cc264 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/
Dsqlite3ext.h359 const char *(*db_name)(sqlite3*,int); member
683 #define sqlite3_db_name sqlite3_api->db_name
Dsqlite3.c129869 const char *(*db_name)(sqlite3*,int);
130193 #define sqlite3_db_name sqlite3_api->db_name
/external/sqlite/dist/orig/
Dsqlite3ext.h359 const char *(*db_name)(sqlite3*,int); member
683 #define sqlite3_db_name sqlite3_api->db_name
Dsqlite3.c129853 const char *(*db_name)(sqlite3*,int);
130177 #define sqlite3_db_name sqlite3_api->db_name
/external/libchrome/libchrome_tools/patches/
Dlibchrome-Update-crypto.patch86 ScopedPK11Slot public_slot(OpenPersistentNSSDBForPath(db_name, path));
/external/autotest/tko/
Dparse.py711 database=options.db_name)