(name: &str)
| 372 | } |
| 373 | |
| 374 | fn installed_argument_value(name: &str) -> anyhow::Result<Option<String>> { |
| 375 | Ok(installed_arguments()? |
| 376 | .as_deref() |
| 377 | .and_then(|arguments| argument_value(arguments, name))) |
| 378 | } |
| 379 | |
| 380 | fn installed_arguments() -> anyhow::Result<Option<Vec<String>>> { |
| 381 | for plist_path in service_plist_paths()? { |
no test coverage detected