topo               74 fencing/standalone_config.c     struct topology *topo = NULL;
topo               76 fencing/standalone_config.c     for (topo = topo_list; topo != NULL; topo = topo->next) {
topo               77 fencing/standalone_config.c         if (!strcasecmp(topo->node_name, name)) {
topo               82 fencing/standalone_config.c     return topo;
topo               93 fencing/standalone_config.c add_topology(struct topology *topo)
topo               95 fencing/standalone_config.c     topo->next = topo_list;
topo               96 fencing/standalone_config.c     topo_list = topo;
topo              193 fencing/standalone_config.c     struct topology *topo = NULL;
topo              200 fencing/standalone_config.c     if (!(topo = find_topology(node))) {
topo              202 fencing/standalone_config.c         topo = calloc(1, sizeof(struct topology));
topo              203 fencing/standalone_config.c         topo->node_name = strdup(node);
topo              204 fencing/standalone_config.c     } else if (topo->priority_levels_count >= STANDALONE_CFG_MAX_KEYVALS) {
topo              208 fencing/standalone_config.c     topo->priority_levels[topo->priority_levels_count].device_name = strdup(device);
topo              209 fencing/standalone_config.c     topo->priority_levels[topo->priority_levels_count].level = level;
topo              210 fencing/standalone_config.c     topo->priority_levels_count++;
topo              213 fencing/standalone_config.c         add_topology(topo);
topo              222 fencing/standalone_config.c     struct topology *topo = NULL;
topo              226 fencing/standalone_config.c         topo = topo_list;
topo              228 fencing/standalone_config.c         free(topo->node_name);
topo              229 fencing/standalone_config.c         for (i = 0; i < topo->priority_levels_count; i++) {
topo              230 fencing/standalone_config.c             free(topo->priority_levels[i].device_name);
topo              233 fencing/standalone_config.c         topo_list = topo->next;
topo              234 fencing/standalone_config.c         free(topo);
topo              264 fencing/standalone_config.c cfg_register_topology(struct topology *topo)
topo              272 fencing/standalone_config.c     for (i = 0; i < topo->priority_levels_count; i++) {
topo              273 fencing/standalone_config.c         devices = stonith_key_value_add(devices, NULL, topo->priority_levels[i].device_name);
topo              275 fencing/standalone_config.c         data = create_level_registration_xml(topo->node_name, NULL, NULL, NULL,
topo              276 fencing/standalone_config.c                                              topo->priority_levels[i].level, devices);
topo              328 fencing/standalone_config.c     struct topology *topo = NULL;
topo              334 fencing/standalone_config.c     for (topo = topo_list; topo != NULL; topo = topo->next) {
topo              335 fencing/standalone_config.c         cfg_register_topology(topo);