Home
last modified time | relevance | path

Searched refs:p9_cfg (Results 1 – 4 of 4) sorted by relevance

/external/crosvm/devices/src/virtio/
Dp9.rs157 pub fn new(base_features: u64, tag: &str, p9_cfg: p9::Config) -> P9Result<P9> { in new()
169 let server = p9::Server::with_config(p9_cfg).map_err(P9Error::CreateServer)?; in new()
/external/crosvm/src/
Dcrosvm.rs177 pub p9_cfg: p9::Config, field
189 p9_cfg: Default::default(), in default()
Dlinux.rs1199 mut p9_cfg: p9::Config, in create_9p_device()
1227 p9_cfg.root = root.into(); in create_9p_device()
1228 let dev = virtio::P9::new(features, tag, p9_cfg).map_err(Error::P9DeviceNew)?; in create_9p_device()
1606 p9_cfg, in create_virtio_devices()
1614 SharedDirKind::P9 => create_9p_device(cfg, uid_map, gid_map, src, tag, p9_cfg.clone())?, in create_virtio_devices()
Dmain.rs1377 shared_dir.p9_cfg.ascii_casefold = ascii_casefold; in set_argument()