Home
last modified time | relevance | path

Searched defs:OpenOptions (Results 1 – 15 of 15) sorted by relevance

/external/rust/android-crates-io/crates/fs-err/src/tokio/
Dopen_options.rs12 pub struct OpenOptions { struct
13 tokio: TokioOpenOptions, argument
16 impl OpenOptions { implementation
40 pub fn read(&mut self, read: bool) -> &mut OpenOptions { in read() method
48 pub fn write(&mut self, write: bool) -> &mut OpenOptions { in write() method
56 pub fn append(&mut self, append: bool) -> &mut OpenOptions { in append() method
64 pub fn truncate(&mut self, truncate: bool) -> &mut OpenOptions { in truncate() method
72 pub fn create(&mut self, create: bool) -> &mut OpenOptions { in create() method
80 pub fn create_new(&mut self, create_new: bool) -> &mut OpenOptions { in create_new() method
99 impl OpenOptions { impl
[all …]
/external/rust/android-crates-io/crates/tokio/src/fs/
Dopen_options.rs82 pub struct OpenOptions(StdOpenOptions); struct
84 impl OpenOptions { impl
130 pub fn read(&mut self, read: bool) -> &mut OpenOptions { in read() method
160 pub fn write(&mut self, write: bool) -> &mut OpenOptions { in write() method
219 pub fn append(&mut self, append: bool) -> &mut OpenOptions { in append() method
252 pub fn truncate(&mut self, truncate: bool) -> &mut OpenOptions { in truncate() method
288 pub fn create(&mut self, create: bool) -> &mut OpenOptions { in create() method
331 pub fn create_new(&mut self, create_new: bool) -> &mut OpenOptions { in create_new() method
406 impl OpenOptions { impl
469 impl OpenOptions { impl
[all …]
/external/rust/android-crates-io/crates/fs-err/src/
Dopen_options.rs7 pub struct OpenOptions(fs::OpenOptions); struct
9 impl OpenOptions { impl
83 impl OpenOptions { impl
92 pub fn options(&self) -> &fs::OpenOptions { in options()
100 pub fn options_mut(&mut self) -> &mut fs::OpenOptions { in options_mut()
109 impl OpenOptionsExt for crate::OpenOptions { implementation
127 impl OpenOptionsExt for crate::OpenOptions { implementation
Dlib.rs296 impl Sealed for crate::OpenOptions {} implementation
/external/crosvm/arch/src/pstore/sys/
Dwindows.rs10 pub fn set_extra_open_opts(opts: &mut OpenOptions) { in set_extra_open_opts()
Dlinux.rs7 pub fn set_extra_open_opts(_opts: &mut OpenOptions) { in set_extra_open_opts()
/external/rust/android-crates-io/crates/tokio/src/net/unix/
Dpipe.rs122 pub struct OpenOptions { struct
128 impl OpenOptions { impl
282 impl Default for OpenOptions { implementation
/external/rust/android-crates-io/crates/tempfile/src/file/imp/
Dother.rs14 _open_options: &mut OpenOptions, in create_named()
Dwindows.rs28 open_options: &mut OpenOptions, in create_named()
Dunix.rs23 open_options: &mut OpenOptions, in create_named()
/external/executorch/backends/apple/coreml/runtime/kvstore/
Ddatabase.hpp38 class OpenOptions { class in executorchcoreml::sqlite::Database
/external/crosvm/fuse/src/
Dfilesystem.rs702 ) -> io::Result<(Option<Self::Handle>, OpenOptions)> { in open() argument
730 ) -> io::Result<(Entry, Option<Self::Handle>, OpenOptions)> { in create() argument
1005 ) -> io::Result<(Option<Self::Handle>, OpenOptions)> { in opendir() argument
1290 ) -> io::Result<(Entry, Option<Self::Handle>, OpenOptions)> { in atomic_open() argument
/external/crosvm/devices/src/virtio/fs/
Dpassthrough.rs1141 fn get_cache_open_options(&self, flags: u32) -> OpenOptions { in get_cache_open_options()
1176 fn do_open(&self, inode: Inode, flags: u32) -> io::Result<(Option<Handle>, OpenOptions)> { in do_open() argument
1197 ) -> io::Result<(Option<Handle>, OpenOptions)> { in do_open_at() argument
2291 ) -> io::Result<(Option<Handle>, OpenOptions)> { in opendir() argument
2395 ) -> io::Result<(Option<Handle>, OpenOptions)> { in open() argument
2496 ) -> io::Result<(Entry, Option<Handle>, OpenOptions)> { in create() argument
3585 ) -> io::Result<(Entry, Option<Self::Handle>, OpenOptions)> { in atomic_open() argument
3779 ) -> io::Result<(Entry, Option<Handle>, OpenOptions)> { in atomic_open() argument
/external/crosvm/base/src/sys/macos/
Dmod.rs38 _options: &std::fs::OpenOptions, in open_file_or_duplicate()
/external/rust/android-crates-io/crates/tempfile/src/file/
Dmod.rs1020 open_options: &mut OpenOptions, in create_named()