| 7801 | } |
| 7802 | |
| 7803 | static void print_detected_registry_agents(const char *home, bool *any) { |
| 7804 | cbm_agent_registry_context_t registry; |
| 7805 | cbm_init_agent_registry_context(home, ®istry); |
| 7806 | for (size_t index = 0U; index < cbm_agent_client_count(); index++) { |
| 7807 | const cbm_agent_client_profile_t *profile = cbm_agent_client_at(index); |
| 7808 | if (profile && cbm_agent_client_detect(profile->id, ®istry.options)) { |
| 7809 | printf(" %s", profile->display_name); |
| 7810 | *any = true; |
| 7811 | } |
| 7812 | } |
| 7813 | } |
| 7814 | |
| 7815 | static void cbm_agent_installed_binary_path(const char *home, char *binary_path, |
| 7816 | size_t binary_path_size) { |
no test coverage detected