Home
last modified time | relevance | path

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

/external/crosvm/src/
Dcrosvm.rs212 pub plugin_mounts: Vec<BindMount>, field
288 plugin_mounts: Vec::new(), in default()
Dmain.rs1434 cfg.plugin_mounts.push(mount); in set_argument()
1447 cfg.plugin_mounts.push(mount); in set_argument()
2610 assert_eq!(config.plugin_mounts[0].src, PathBuf::from("/dev/null")); in parse_plugin_mount_valid()
2611 assert_eq!(config.plugin_mounts[0].dst, PathBuf::from("/dev/zero")); in parse_plugin_mount_valid()
2612 assert_eq!(config.plugin_mounts[0].writable, true); in parse_plugin_mount_valid()
2619 assert_eq!(config.plugin_mounts[0].dst, PathBuf::from("/dev/null")); in parse_plugin_mount_valid_shorthand()
2620 assert_eq!(config.plugin_mounts[0].writable, false); in parse_plugin_mount_valid_shorthand()
2623 assert_eq!(config.plugin_mounts[1].dst, PathBuf::from("/dev/zero")); in parse_plugin_mount_valid_shorthand()
2624 assert_eq!(config.plugin_mounts[1].writable, false); in parse_plugin_mount_valid_shorthand()
2627 assert_eq!(config.plugin_mounts[2].dst, PathBuf::from("/dev/null")); in parse_plugin_mount_valid_shorthand()
[all …]
/external/crosvm/src/plugin/
Dmod.rs652 for bind_mount in &cfg.plugin_mounts { in run_config()