Searched refs:RTE_NODE_NAMESIZE (Results 1 – 12 of 12) sorted by relevance
| /f-stack/dpdk/lib/librte_graph/ |
| H A D | node.c | 35 if (strncmp(node->name, name, RTE_NODE_NAMESIZE) == 0) in node_from_name() 48 if (strncmp(node->name, name, RTE_NODE_NAMESIZE) == 0) { in node_has_duplicate_entry() 81 sz = sizeof(struct node) + (reg->nb_edges * RTE_NODE_NAMESIZE); in __rte_node_register() 89 if (rte_strscpy(node->name, reg->name, RTE_NODE_NAMESIZE) < 0) { in __rte_node_register() 101 RTE_NODE_NAMESIZE) < 0) { in __rte_node_register() 126 #define SZ RTE_NODE_NAMESIZE in clone_name() 210 if (strncmp(node->name, name, RTE_NODE_NAMESIZE) == 0) in rte_node_from_name() 268 sz = sizeof(struct node) + (max_edges * RTE_NODE_NAMESIZE); in edge_update() 281 RTE_NODE_NAMESIZE) < 0) { in edge_update()
|
| H A D | rte_graph.h | 37 #define RTE_NODE_NAMESIZE 64 /**< Max length of node name. */ macro 211 char name[RTE_NODE_NAMESIZE]; /**< Name of the node. */ 428 char name[RTE_NODE_NAMESIZE]; /**< Name of the node. */
|
| H A D | graph_private.h | 50 char name[RTE_NODE_NAMESIZE]; /**< Name of the node. */ 58 char next_nodes[][RTE_NODE_NAMESIZE]; /**< Names of next nodes. */
|
| H A D | rte_graph_worker.h | 63 char parent[RTE_NODE_NAMESIZE]; /**< Parent node name. */ 64 char name[RTE_NODE_NAMESIZE]; /**< Name of the node. */
|
| H A D | graph_ops.c | 23 RTE_NODE_NAMESIZE) == 0) { in node_has_loop_edge()
|
| H A D | graph.c | 52 RTE_NODE_NAMESIZE) == 0) in graph_node_add() 451 RTE_NODE_NAMESIZE)) in rte_graph_node_get_by_name()
|
| H A D | graph_populate.c | 127 if (strncmp(name, node->name, RTE_NODE_NAMESIZE) == 0) in graph_node_name_to_ptr()
|
| H A D | graph_stats.c | 172 memcpy(cluster->stat.name, graph_node->node->name, RTE_NODE_NAMESIZE); in stats_mem_populate()
|
| /f-stack/dpdk/app/test/ |
| H A D | test_graph_perf.c | 258 char lookup_name[RTE_NODE_NAMESIZE]; in graph_node_get() 261 snprintf(lookup_name, RTE_NODE_NAMESIZE, "%s-%s", pname, nname); in graph_node_get() 285 ename[edges] = malloc(sizeof(char) * RTE_NODE_NAMESIZE); in graph_node_count_edges() 286 snprintf(ename[edges], RTE_NODE_NAMESIZE, "%s", in graph_node_count_edges() 313 char nname[RTE_NODE_NAMESIZE / 2]; in graph_init() 382 malloc(RTE_NODE_NAMESIZE); in graph_init() 398 RTE_NODE_NAMESIZE, "%s", in graph_init() 470 ename[edges] = malloc(sizeof(char) * RTE_NODE_NAMESIZE); in graph_init() 471 snprintf(ename[edges], RTE_NODE_NAMESIZE, "%s", in graph_init() 534 ename[edges] = malloc(sizeof(char) * RTE_NODE_NAMESIZE); in graph_init() [all …]
|
| H A D | test_graph.c | 73 char name[RTE_NODE_NAMESIZE]; 682 if (strncmp(node->name, node_names[i], RTE_NODE_NAMESIZE)) { in test_graph_lookup_functions() 703 if (strncmp(node->name, node_names[i], RTE_NODE_NAMESIZE)) { in test_graph_lookup_functions()
|
| /f-stack/dpdk/lib/librte_node/ |
| H A D | ethdev_ctrl.c | 29 char name[RTE_NODE_NAMESIZE]; in rte_node_eth_config()
|
| /f-stack/dpdk/examples/l3fwd-graph/ |
| H A D | main.c | 82 char node_name[RTE_NODE_NAMESIZE]; 952 RTE_NODE_NAMESIZE, "ethdev_rx-%u-%u", portid, in main()
|