Lines Matching refs:OsString
22 use std::ffi::{OsStr, OsString};
45 mountpoint: OsString,
80 mountpoint: OsString, in mount_and_wait() argument
137 let mut args = vec![mountpoint.to_owned(), OsString::from("--cid=2")]; in run_authfs()
138 args.push(OsString::from("-o")); in run_authfs()
139 args.push(OsString::from("fscontext=u:object_r:authfs_fuse:s0")); in run_authfs()
143 args.push(OsString::from("--remote-ro-file-unverified")); in run_authfs()
144 args.push(OsString::from(conf.fd.to_string())); in run_authfs()
147 args.push(OsString::from("--remote-new-rw-file")); in run_authfs()
148 args.push(OsString::from(conf.fd.to_string())); in run_authfs()
151 args.push(OsString::from("--remote-ro-dir")); in run_authfs()
152 args.push(OsString::from(format!("{}:{}:{}", conf.fd, conf.manifestPath, conf.prefix))); in run_authfs()
155 args.push(OsString::from("--remote-new-rw-dir")); in run_authfs()
156 args.push(OsString::from(conf.fd.to_string())); in run_authfs()
159 args.push(OsString::from("--debug")); in run_authfs()