Symbol: topo_edge_t
usr/src/lib/fm/topo/libtopo/common/libtopo.h
451
int (*)(topo_hdl_t *, topo_edge_t *, boolean_t, void *), void *);
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
333
topo_edge_t *edge;
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
342
topo_edge_t *tmp = edge;
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
345
topo_mod_free(mod, tmp, sizeof (topo_edge_t));
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
350
topo_edge_t *tmp = edge;
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
353
topo_mod_free(mod, tmp, sizeof (topo_edge_t));
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
410
topo_edge_t *e_from = NULL, *e_to = NULL;
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
428
if ((e_from = topo_mod_zalloc(mod, sizeof (topo_edge_t))) == NULL ||
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
429
(e_to = topo_mod_zalloc(mod, sizeof (topo_edge_t))) == NULL) {
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
430
topo_mod_free(mod, e_from, sizeof (topo_edge_t));
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
431
topo_mod_free(mod, e_to, sizeof (topo_edge_t));
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
458
int (*func)(topo_hdl_t *, topo_edge_t *, boolean_t, void *), void *arg)
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
462
for (topo_edge_t *edge = topo_list_next(&vtx->tvt_outgoing);
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
605
for (topo_edge_t *edge = topo_list_next(&vtx->tvt_outgoing);
usr/src/lib/fm/topo/libtopo/common/topo_digraph.c
662
for (topo_edge_t *edge = topo_list_next(&from->tvt_outgoing);
usr/src/lib/fm/topo/libtopo/common/topo_digraph_xml.c
435
serialize_edge(topo_hdl_t *thp, topo_edge_t *edge, boolean_t last_edge,