|
DPDK
1.6.0r2
|
Functions | |
| void | rte_hexdump (const char *title, const void *buf, unsigned int len) |
| void | rte_memdump (const char *title, const void *buf, unsigned int len) |
Simple API to dump out memory in a special hex format.
| void rte_hexdump | ( | const char * | title, |
| const void * | buf, | ||
| unsigned int | len | ||
| ) |
Dump out memory in a special hex dump format.
| title | If not NULL this string is printed as a header to the output. |
| buf | This is the buffer address to print out. |
| len | The number of bytes to dump out |
| void rte_memdump | ( | const char * | title, |
| const void * | buf, | ||
| unsigned int | len | ||
| ) |
Dump out memory in a hex format with colons between bytes.
| title | If not NULL this string is printed as a header to the output. |
| buf | This is the buffer address to print out. |
| len | The number of bytes to dump out |
1.8.1.2