MCPcopy Create free account
hub / github.com/NativeScript/SimDeck / installed_arguments

Function installed_arguments

packages/server/src/service.rs:380–387  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

378}
379
380fn installed_arguments() -> anyhow::Result<Option<Vec<String>>> {
381 for plist_path in service_plist_paths()? {
382 if let Some(arguments) = installed_arguments_from_plist(&plist_path)? {
383 return Ok(Some(arguments));
384 }
385 }
386 Ok(None)
387}
388
389fn installed_arguments_for_label(label: &str) -> anyhow::Result<Option<Vec<String>>> {
390 installed_arguments_from_plist(&plist_path_for_label(label)?)

Callers 2

installed_credentialsFunction · 0.85
installed_argument_valueFunction · 0.85

Calls 2

service_plist_pathsFunction · 0.85

Tested by

no test coverage detected