Searched refs:net_byte_to_hex (Results 1 – 3 of 3) sorted by relevance
/Zephyr-latest/subsys/net/ip/ |
D | utils.c | 80 char *net_byte_to_hex(char *ptr, uint8_t byte, char base, bool pad) in net_byte_to_hex() function 122 ptr = net_byte_to_hex(ptr, (char)ll[i], 'A', true); in net_sprint_ll_addr_buf() 270 ptr = net_byte_to_hex(ptr, bh, 'a', false); in z_impl_net_addr_ntop() 273 ptr = net_byte_to_hex(ptr, bl, 'a', true); in z_impl_net_addr_ntop() 278 ptr = net_byte_to_hex(ptr, bl, 'a', false); in z_impl_net_addr_ntop()
|
D | net_private.h | 268 extern char *net_byte_to_hex(char *ptr, uint8_t byte, char base, bool pad);
|
/Zephyr-latest/tests/net/ip-addr/src/ |
D | main.c | 43 net_byte_to_hex(out, value, 'A', true); \ 51 net_byte_to_hex(out, value, 'a', true); \
|