Home
last modified time | relevance | path

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

/aosp12/packages/modules/Virtualization/compos/src/
H A Dcompsvc_worker.rs50 let mut args = vec![AUTHFS_BIN.to_string(), config.authfs_root.clone()]; in spawn_authfs()
72 fn wait_until_authfs_ready(authfs_root: &str) -> Result<()> { in wait_until_authfs_ready()
75 if is_fuse(authfs_root)? { in wait_until_authfs_ready()
86 fn open_authfs_file(authfs_root: &str, basename: PseudoRawFd, writable: bool) -> io::Result<File> { in open_authfs_file()
87 OpenOptions::new().read(true).write(writable).open(format!("{}/{}", authfs_root, basename)) in open_authfs_file()
96 .map(|conf| Ok((open_authfs_file(&config.authfs_root, conf.fd, false)?, conf.fd))) in open_authfs_files_for_mapping()
103 .map(|conf| Ok((open_authfs_file(&config.authfs_root, conf.fd, true)?, conf.fd))) in open_authfs_files_for_mapping()
134 authfs_root: String, field
168 let authfs_root = matches.value_of("authfs-root").unwrap().to_string(); in parse_args() localVariable
196 Ok(Config { authfs_root, in_fds, out_fds, args, debuggable }) in parse_args()
[all …]