Lines Matching refs:owner_graph
97 struct owner_graph;
143 static void graph_check(struct owner_graph *g, int checkorder);
146 static int graph_delta_forward(struct owner_graph *g,
149 static int graph_delta_backward(struct owner_graph *g,
154 static int graph_assign_indices(struct owner_graph *g, int *indices,
156 static int graph_add_edge(struct owner_graph *g,
158 static void graph_remove_edge(struct owner_graph *g,
160 static struct owner_vertex *graph_alloc_vertex(struct owner_graph *g,
162 static void graph_free_vertex(struct owner_graph *g,
164 static struct owner_graph * graph_init(struct owner_graph *g);
263 struct owner_graph { struct
272 static struct owner_graph lf_owner_graph; argument
881 struct owner_graph *g = &lf_owner_graph; in lf_alloc_vertex()
895 struct owner_graph *g = &lf_owner_graph; in lf_add_edge()
930 struct owner_graph *g = &lf_owner_graph; in lf_remove_edge()
2057 graph_check(struct owner_graph *g, int checkorder) in graph_check()
2102 graph_delta_forward(struct owner_graph *g, struct owner_vertex *x, in graph_delta_forward()
2144 graph_delta_backward(struct owner_graph *g, struct owner_vertex *x, in graph_delta_backward()
2198 graph_assign_indices(struct owner_graph *g, int *indices, int nextunused, in graph_assign_indices()
2219 graph_add_edge(struct owner_graph *g, struct owner_vertex *x, in graph_add_edge()
2359 graph_remove_edge(struct owner_graph *g, struct owner_vertex *x, in graph_remove_edge()
2394 graph_alloc_vertex(struct owner_graph *g, struct lock_owner *lo) in graph_alloc_vertex()
2423 graph_free_vertex(struct owner_graph *g, struct owner_vertex *v) in graph_free_vertex()
2447 static struct owner_graph *
2448 graph_init(struct owner_graph *g) in graph_init()