Home
last modified time | relevance | path

Searched refs:open_with_flags (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/rusqlite/src/
Dunlock_notify.rs112 let db1 = Connection::open_with_flags(url, flags).unwrap(); in test_unlock_notify()
116 let mut db2 = Connection::open_with_flags(url, flags).unwrap(); in test_unlock_notify()
Dlib.rs348 Connection::open_with_flags(path, flags) in open()
370 pub fn open_with_flags<P: AsRef<Path>>(path: P, flags: OpenFlags) -> Result<Connection> { in open_with_flags() method
372 InnerConnection::open_with_flags(&c_path, flags, None).map(|db| Connection { in open_with_flags()
396 InnerConnection::open_with_flags(&c_path, flags, Some(&c_vfs)).map(|db| Connection { in open_with_flags_and_vfs()
412 Connection::open_with_flags(":memory:", flags) in open_in_memory_with_flags()
970 Connection::open_with_flags(&path, OpenFlags::SQLITE_OPEN_READ_WRITE).unwrap(); in test_concurrent_transactions_busy_commit()
971 let mut db2 = Connection::open_with_flags(&path, OpenFlags::SQLITE_OPEN_READ_ONLY).unwrap(); in test_concurrent_transactions_busy_commit()
1033 let result = Connection::open_with_flags(filename, OpenFlags::SQLITE_OPEN_READ_ONLY); in test_open_failure()
Dinner_connection.rs53 pub fn open_with_flags( in open_with_flags() method