Home
last modified time | relevance | path

Searched refs:RTE_MEM_ALLOC_VALIDATOR_NAME_LEN (Results 1 – 2 of 2) sorted by relevance

/f-stack/dpdk/lib/librte_eal/common/
H A Deal_common_memalloc.c28 char name[RTE_MEM_ALLOC_VALIDATOR_NAME_LEN];
265 len = strnlen(name, RTE_MEM_ALLOC_VALIDATOR_NAME_LEN); in eal_memalloc_mem_alloc_validator_register()
269 } else if (len == RTE_MEM_ALLOC_VALIDATOR_NAME_LEN) { in eal_memalloc_mem_alloc_validator_register()
293 strlcpy(entry->name, name, RTE_MEM_ALLOC_VALIDATOR_NAME_LEN); in eal_memalloc_mem_alloc_validator_register()
316 len = strnlen(name, RTE_MEM_ALLOC_VALIDATOR_NAME_LEN); in eal_memalloc_mem_alloc_validator_unregister()
320 } else if (len == RTE_MEM_ALLOC_VALIDATOR_NAME_LEN) { in eal_memalloc_mem_alloc_validator_unregister()
/f-stack/dpdk/lib/librte_eal/include/
H A Drte_memory.h705 #define RTE_MEM_ALLOC_VALIDATOR_NAME_LEN 64 macro