MCPcopy Create free account
hub / github.com/F-Stack/f-stack / rte_kvargs_get

Function rte_kvargs_get

dpdk/lib/kvargs/rte_kvargs.c:226–232  ·  view source on GitHub ↗

Lookup a value in an rte_kvargs list by its key. */

Source from the content-addressed store, hash-verified

224
225/* Lookup a value in an rte_kvargs list by its key. */
226const char *
227rte_kvargs_get(const struct rte_kvargs *kvlist, const char *key)
228{
229 if (kvlist == NULL || key == NULL)
230 return NULL;
231 return rte_kvargs_get_with_value(kvlist, key, NULL);
232}
233
234/*
235 * Parse the arguments "key=value,key=value,..." string and return

Callers 8

cpfl_parse_devargsFunction · 0.85
rte_pci_devargs_parseFunction · 0.85
cdx_dev_matchFunction · 0.85
auxiliary_dev_matchFunction · 0.85
platform_dev_matchFunction · 0.85
vdev_dev_matchFunction · 0.85
cmp_dev_matchFunction · 0.85

Calls 1

Tested by 1

cmp_dev_matchFunction · 0.68