Searched refs:dgraph (Results 1 – 1 of 1) sorted by relevance
/titanic_50/usr/src/cmd/svc/startd/ |
H A D | graph.c | 214 static uu_list_t *dgraph; variable 345 dgraph = startd_list_create(graph_vertex_pool, NULL, UU_LIST_SORTED); in graph_init() 346 assert(dgraph != NULL); in graph_init() 365 return (uu_list_find(dgraph, &id, NULL, NULL)); in vertex_get_by_name() 376 return (uu_list_find(dgraph, &id, NULL, NULL)); in vertex_get_by_id() 405 p = uu_list_find(dgraph, &id, NULL, &idx); in graph_add_vertex() 409 uu_list_insert(dgraph, v, idx); in graph_add_vertex() 430 uu_list_remove(dgraph, v); in graph_remove_vertex() 2014 for (v = uu_list_first(dgraph); v != NULL; in graph_enable_by_vertex() 2015 v = uu_list_next(dgraph, v)) { in graph_enable_by_vertex() [all …]
|