Searched refs:dgraph (Results 1 – 1 of 1) sorted by relevance
/illumos-gate/usr/src/cmd/svc/startd/ |
H A D | graph.c | 220 static uu_list_t *dgraph; variable 351 dgraph = startd_list_create(graph_vertex_pool, NULL, UU_LIST_SORTED); in graph_init() 352 assert(dgraph != NULL); in graph_init() 371 return (uu_list_find(dgraph, &id, NULL, NULL)); in vertex_get_by_name() 382 return (uu_list_find(dgraph, &id, NULL, NULL)); in vertex_get_by_id() 411 p = uu_list_find(dgraph, &id, NULL, &idx); in graph_add_vertex() 415 uu_list_insert(dgraph, v, idx); in graph_add_vertex() 436 uu_list_remove(dgraph, v); in graph_remove_vertex() 1988 for (v = uu_list_first(dgraph); v != NULL; in graph_enable_by_vertex() 1989 v = uu_list_next(dgraph, v)) { in graph_enable_by_vertex() [all …]
|