Searched refs:onebyte (Results 1 – 3 of 3) sorted by relevance
/third_party/iptables/extensions/ |
D | libebt_arp.c | 93 long int onebyte; in undot_ip() local 104 onebyte = strtol(p, &end, 10); in undot_ip() 105 if (*end != '\0' || onebyte > 255 || onebyte < 0) in undot_ip() 107 ip2[i] = (unsigned char)onebyte; in undot_ip() 111 onebyte = strtol(p, &end, 10); in undot_ip() 112 if (*end != '\0' || onebyte > 255 || onebyte < 0) in undot_ip() 114 ip2[3] = (unsigned char)onebyte; in undot_ip()
|
D | libebt_ip.c | 199 long int onebyte; in undot_ip() local 210 onebyte = strtol(p, &end, 10); in undot_ip() 211 if (*end != '\0' || onebyte > 255 || onebyte < 0) in undot_ip() 213 ip2[i] = (unsigned char)onebyte; in undot_ip() 217 onebyte = strtol(p, &end, 10); in undot_ip() 218 if (*end != '\0' || onebyte > 255 || onebyte < 0) in undot_ip() 220 ip2[3] = (unsigned char)onebyte; in undot_ip()
|
/third_party/iptables/libxtables/ |
D | xtables.c | 1471 unsigned int onebyte; in __numeric_to_ipaddr() local 1487 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) in __numeric_to_ipaddr() 1490 addrp[i] = onebyte; in __numeric_to_ipaddr() 1498 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) in __numeric_to_ipaddr() 1501 addrp[i] = onebyte; in __numeric_to_ipaddr() 1506 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) in __numeric_to_ipaddr() 1509 addrp[3] = onebyte; in __numeric_to_ipaddr()
|