Searched refs:open_with_flags (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/rusqlite/src/ |
D | unlock_notify.rs | 112 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()
|
D | lib.rs | 348 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()
|
D | inner_connection.rs | 53 pub fn open_with_flags( in open_with_flags() method
|