Searched refs:onebyte (Results 1 – 2 of 2) sorted by relevance
/external/iproute2/tc/ |
D | m_ipt.c | 316 unsigned int onebyte; in dotted_to_addr() local 330 if (string_to_number(p, 0, 255, &onebyte) == -1) in dotted_to_addr() 333 addrp[i] = (unsigned char) onebyte; in dotted_to_addr() 338 if (string_to_number(p, 0, 255, &onebyte) == -1) in dotted_to_addr() 341 addrp[3] = (unsigned char) onebyte; in dotted_to_addr()
|
/external/iptables/iptables/ |
D | xtables.c | 1151 unsigned int onebyte; in __numeric_to_ipaddr() local 1167 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) in __numeric_to_ipaddr() 1170 addrp[i] = onebyte; in __numeric_to_ipaddr() 1178 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) in __numeric_to_ipaddr() 1181 addrp[i] = onebyte; in __numeric_to_ipaddr() 1186 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) in __numeric_to_ipaddr() 1189 addrp[3] = onebyte; in __numeric_to_ipaddr()
|