Lines Matching refs:graph
20 static uint16_t test_node_worker_source(struct rte_graph *graph,
24 static uint16_t test_node0_worker(struct rte_graph *graph,
28 static uint16_t test_node1_worker(struct rte_graph *graph,
32 static uint16_t test_node2_worker(struct rte_graph *graph,
36 static uint16_t test_node3_worker(struct rte_graph *graph,
131 node_init(const struct rte_graph *graph, struct rte_node *node) in node_init() argument
133 RTE_SET_USED(graph); in node_init()
157 test_node_worker_source(struct rte_graph *graph, struct rte_node *node, in test_node_worker_source() argument
173 next_stream = rte_node_next_stream_get(graph, node, next, obj_node0); in test_node_worker_source()
181 rte_node_next_stream_put(graph, node, next, obj_node0); in test_node_worker_source()
186 next_stream = rte_node_next_stream_get(graph, node, next, obj_node1); in test_node_worker_source()
195 rte_node_next_stream_put(graph, node, next, obj_node1); in test_node_worker_source()
202 test_node0_worker(struct rte_graph *graph, struct rte_node *node, void **objs, in test_node0_worker() argument
254 rte_node_enqueue(graph, node, 0, (void **)&mbuf_p[1][0], in test_node0_worker()
267 rte_node_enqueue(graph, node, 1, (void **)&mbuf_p[1][obj_node0], in test_node0_worker()
271 test_node1_worker(graph, node, objs, nb_objs); in test_node0_worker()
273 test_node2_worker(graph, node, objs, nb_objs); in test_node0_worker()
275 test_node3_worker(graph, node, objs, nb_objs); in test_node0_worker()
285 test_node1_worker(struct rte_graph *graph, struct rte_node *node, void **objs, in test_node1_worker() argument
332 rte_node_enqueue(graph, node, 0, (void **)&mbuf_p[2][0], obj_node0); in test_node1_worker()
339 test_node2_worker(struct rte_graph *graph, struct rte_node *node, void **objs, in test_node2_worker() argument
386 rte_node_enqueue(graph, node, 0, (void **)&mbuf_p[3][0], in test_node2_worker()
395 test_node3_worker(struct rte_graph *graph, struct rte_node *node, void **objs, in test_node3_worker() argument
446 rte_node_enqueue(graph, node, 0, (void **)&mbuf_p[4][0], in test_node3_worker()
648 struct rte_graph *graph = rte_graph_lookup("worker0"); in test_graph_walk() local
651 if (!graph) { in test_graph_walk()
657 rte_graph_walk(graph); in test_graph_walk()