/illumos-gate/usr/src/lib/fm/topo/libtopo/common/ |
H A D | topo_digraph.c | 333 topo_edge_t *edge; in topo_vertex_destroy() local 340 edge = topo_list_next(&vtx->tvt_incoming); in topo_vertex_destroy() 341 while (edge != NULL) { in topo_vertex_destroy() 342 topo_edge_t *tmp = edge; in topo_vertex_destroy() 344 edge = topo_list_next(edge); in topo_vertex_destroy() 348 edge = topo_list_next(&vtx->tvt_outgoing); in topo_vertex_destroy() 349 while (edge != NULL) { in topo_vertex_destroy() 350 topo_edge_t *tmp = edge; in topo_vertex_destroy() 352 edge = topo_list_next(edge); in topo_vertex_destroy() 462 for (topo_edge_t *edge = topo_list_next(&vtx->tvt_outgoing); in topo_edge_iter() local [all …]
|
H A D | topo_digraph_xml.c | 435 serialize_edge(topo_hdl_t *thp, topo_edge_t *edge, boolean_t last_edge, in serialize_edge() argument 444 tn = topo_vertex_node(edge->tve_vertex); in serialize_edge()
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | flock_impl.h | 51 struct edge { struct 52 struct edge *edge_adj_next; /* adjacency list next */ argument 53 struct edge *edge_adj_prev; /* adjacency list prev */ argument 54 struct edge *edge_in_next; /* incoming edges list next */ argument 55 struct edge *edge_in_prev; /* incoming edges list prev */ argument 60 typedef struct edge edge_t; 65 struct edge l_edge; /* edge for adj and in lists */ 69 struct edge *l_sedge; /* start edge for graph alg. */ 446 struct proc_edge *edge; /* adajcent edges of this process */ member
|
/illumos-gate/usr/src/lib/libsip/common/ |
H A D | sip_reass.c | 82 char *edge; in sip_get_msglen() local 85 edge = p + msglen; in sip_get_msglen() 95 if (e == edge) in sip_get_msglen() 99 if (e == edge) in sip_get_msglen() 110 if (e == edge) in sip_get_msglen()
|
/illumos-gate/usr/src/uts/common/os/ |
H A D | flock.c | 922 sizeof (struct edge), 0, NULL, NULL, NULL, NULL, NULL, 0); in flk_init() 1487 edge_t *edge; in flk_add_edge() local 1503 edge = flk_get_edge(); in flk_add_edge() 1509 edge->from_vertex = from_lock; in flk_add_edge() 1510 edge->to_vertex = to_lock; in flk_add_edge() 1516 from_lock->l_edge.edge_adj_next->edge_adj_prev = edge; in flk_add_edge() 1517 edge->edge_adj_next = from_lock->l_edge.edge_adj_next; in flk_add_edge() 1518 edge->edge_adj_prev = &from_lock->l_edge; in flk_add_edge() 1519 from_lock->l_edge.edge_adj_next = edge; in flk_add_edge() 1525 to_lock->l_edge.edge_in_next->edge_in_prev = edge; in flk_add_edge() [all …]
|
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/ |
H A D | typegraph.c | 1205 tg_edge_t *edge; in typegraph_build_anchored() local 1258 edge = mdb_zalloc(sizeof (tg_edge_t), UM_SLEEP); in typegraph_build_anchored() 1260 edge->tge_src = src; in typegraph_build_anchored() 1261 edge->tge_dest = node; in typegraph_build_anchored() 1262 edge->tge_nextout = src->tgn_outgoing; in typegraph_build_anchored() 1263 src->tgn_outgoing = edge; in typegraph_build_anchored() 1265 edge->tge_srcoffs += ndx * sizeof (uintptr_t); in typegraph_build_anchored() 1266 edge->tge_destoffs = ptr - node->tgn_base; in typegraph_build_anchored() 1267 edge->tge_nextin = node->tgn_incoming; in typegraph_build_anchored() 1268 node->tgn_incoming = edge; in typegraph_build_anchored() [all …]
|
/illumos-gate/usr/src/lib/librstp/common/ |
H A D | port.c | 95 STP_STATE_MACH_IN_LIST(edge); in STP_port_create() 113 this->edge->ignoreHop2State = 0; /* DISABLED; */ in STP_port_create() 120 this->edge->debug = 1; in STP_port_create()
|
H A D | TODO | 12 3. To rewrite edge.c for more exact correspondence with the
|
H A D | port.h | 67 STATE_MACH_T* edge; /* */ member
|
H A D | stp_in.c | 216 if (port->edge->debug) { in _stp_in_enable_port_on_stpm() 664 if (port->edge->debug && port->operEdge) { in STP_IN_rx_bpdu() 848 if (port->edge->debug) { in STP_IN_port_set_cfg()
|
H A D | README.files | 46 edge.c - operEdge Port Resolution State Machine
|
/illumos-gate/usr/src/lib/libcpc/i386/ |
H A D | event_pentium.c | 538 int usr, sys, edge, inv, irupt, pc; member 549 xpes->edge = (pes >> CPC_P6_PES_E) & 1u; in unmake_pes() 621 xpes[0].edge, xpes[1].edge, 1, tokens[D_noedge]); in cpc_eventtostr() 742 if (xpes[i].edge == 0) in __cpc_eventtoset() 784 if (xpes[i].edge == 0) { in __cpc_eventtoset()
|
/illumos-gate/usr/src/cmd/svc/startd/ |
H A D | graph.c | 1243 graph_edge_t *edge; in require_all_satisfied() local 1252 for (edge = uu_list_first(groupv->gv_dependencies); in require_all_satisfied() 1253 edge != NULL; in require_all_satisfied() 1254 edge = uu_list_next(groupv->gv_dependencies, edge)) { in require_all_satisfied() 1255 i = dependency_satisfied(edge->ge_vertex, satbility); in require_all_satisfied() 1261 edge->ge_vertex->gv_name, i == 0 ? "ed" : "able"); in require_all_satisfied() 1282 graph_edge_t *edge; in require_any_satisfied() local 1291 for (edge = uu_list_first(groupv->gv_dependencies); in require_any_satisfied() 1292 edge != NULL; in require_any_satisfied() 1293 edge = uu_list_next(groupv->gv_dependencies, edge)) { in require_any_satisfied() [all …]
|
/illumos-gate/usr/src/lib/librstp/ |
H A D | Makefile.com | 30 OBJECTS = edge.o migrate.o p2p.o pcost.o port.o portinfo.o rolesel.o \
|
/illumos-gate/usr/src/tools/smatch/src/gvpr/ |
H A D | return-paths | 29 // Each call edge which hasn't already been seen
|
H A D | subg-rev | 56 // This is a return edge. Allow the corresponding call
|
/illumos-gate/usr/src/cmd/vi/port/ |
H A D | ex_voper.c | 555 forbid(margin() || opf == vmove && edge()); in operate() 1013 if (edge()) in find() 1183 edge(void) in edge() function
|
H A D | ex.news | 508 distance from the right edge of the screen, but this location 509 is now the right edge of the area where wraps can take place, 510 instead of the left edge. Wrapmargin now behaves much like
|
/illumos-gate/usr/src/uts/intel/pcbe/ |
H A D | p4_pcbe.c | 683 int edge = 0; in p4_pcbe_configure() local 779 edge = 1; in p4_pcbe_configure() 879 if (edge) in p4_pcbe_configure()
|
/illumos-gate/usr/src/cmd/cmd-inet/lib/nwamd/ |
H A D | README | 345 edge case here is that when DHCP information comes
|
/illumos-gate/usr/src/cmd/sgs/liblddbg/common/ |
H A D | liblddbg.msg | 1095 @ MSG_UTL_EDGE_TITLE_I "traversing %s dependency edge for interposer:" 1096 @ MSG_UTL_EDGE_TITLE_S "traversing %s dependency edge:"
|
/illumos-gate/exception_lists/ |
H A D | hdrchk | 184 usr/src/lib/librstp/common/edge.h
|
H A D | cstyle | 651 usr/src/lib/librstp/common/edge.c 652 usr/src/lib/librstp/common/edge.h
|
/illumos-gate/usr/src/uts/sun4/ml/ |
H A D | interrupt.S | 970 ! ASSERT(%l1 != 0) (we didn't shift the bit off the right edge)
|
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/ |
H A D | release.txt | 623 4. Problem: CQ90930 - FW assert in case of tcp window edge going backward 4106 Change: (FW iSCSI) Fix the OOO right edge trimming.
|