Searched refs:FsOptions (Results 1 – 6 of 6) sorted by relevance
/external/autotest/client/bin/ |
D | partition_unittest.py | 21 self.assertRaises(ValueError, partition.FsOptions, '', '', '', '') 22 self.assertRaises(ValueError, partition.FsOptions, 'ext2', '', '', '') 23 obj = partition.FsOptions('ext2', 'ext2_vanilla', '', '') 24 obj = partition.FsOptions(fstype='ext2', fs_tag='ext2_vanilla') 25 obj = partition.FsOptions('fs', 'shortie', 'mkfs opts', 'mount opts') 33 str_obj = str(partition.FsOptions('abc', 'def', 'ghi', 'jkl'))
|
D | partition.py | 17 class FsOptions(object): class
|
/external/crosvm/fuse/src/ |
D | server.rs | 926 let supported = FsOptions::ASYNC_READ in init() 927 | FsOptions::PARALLEL_DIROPS in init() 928 | FsOptions::BIG_WRITES in init() 929 | FsOptions::AUTO_INVAL_DATA in init() 930 | FsOptions::HANDLE_KILLPRIV in init() 931 | FsOptions::ASYNC_DIO in init() 932 | FsOptions::HAS_IOCTL_DIR in init() 933 | FsOptions::DO_READDIRPLUS in init() 934 | FsOptions::READDIRPLUS_AUTO in init() 935 | FsOptions::ATOMIC_O_TRUNC in init() [all …]
|
D | filesystem.rs | 16 FsOptions, IoctlFlags, IoctlIovec, OpenOptions, RemoveMappingOne, SetattrValid, ROOT_ID, 394 fn init(&self, capable: FsOptions) -> io::Result<FsOptions> { in init() argument 395 Ok(FsOptions::empty()) in init()
|
D | sys.rs | 165 pub struct FsOptions: u32 {
|
/external/crosvm/devices/src/virtio/fs/ |
D | passthrough.rs | 25 Context, DirectoryIterator, Entry, FileSystem, FsOptions, GetxattrReply, IoctlFlags, 1054 fn init(&self, capable: FsOptions) -> io::Result<FsOptions> { in init() argument 1092 let mut opts = FsOptions::DO_READDIRPLUS in init() 1093 | FsOptions::READDIRPLUS_AUTO in init() 1094 | FsOptions::EXPORT_SUPPORT in init() 1095 | FsOptions::DONT_MASK in init() 1096 | FsOptions::POSIX_ACL; in init() 1097 if self.cfg.writeback && capable.contains(FsOptions::WRITEBACK_CACHE) { in init() 1098 opts |= FsOptions::WRITEBACK_CACHE; in init() 1102 if capable.contains(FsOptions::ZERO_MESSAGE_OPEN) { in init() [all …]
|