Searched refs:spistr (Results 1 – 5 of 5) sorted by relevance
/external/iptables/extensions/ |
D | libipt_ah.c | 28 parse_ah_spi(const char *spistr) in parse_ah_spi() argument 33 spi = strtoul(spistr,&ep,0) ; in parse_ah_spi() 35 if ( spistr == ep ) { in parse_ah_spi() 37 "AH no valid digits in spi `%s'", spistr); in parse_ah_spi() 41 "spi `%s' specified too big: would overflow", spistr); in parse_ah_spi() 43 if ( *spistr != '\0' && *ep != '\0' ) { in parse_ah_spi() 45 "AH error parsing spi `%s'", spistr); in parse_ah_spi()
|
D | libipt_esp.c | 28 parse_esp_spi(const char *spistr) in parse_esp_spi() argument 33 spi = strtoul(spistr,&ep,0) ; in parse_esp_spi() 35 if ( spistr == ep ) { in parse_esp_spi() 37 "ESP no valid digits in spi `%s'", spistr); in parse_esp_spi() 41 "spi `%s' specified too big: would overflow", spistr); in parse_esp_spi() 43 if ( *spistr != '\0' && *ep != '\0' ) { in parse_esp_spi() 45 "ESP error parsing spi `%s'", spistr); in parse_esp_spi()
|
D | libip6t_esp.c | 27 parse_esp_spi(const char *spistr) in parse_esp_spi() argument 32 spi = strtoul(spistr, &ep, 0); in parse_esp_spi() 34 if ( spistr == ep ) { in parse_esp_spi() 36 "ESP no valid digits in spi `%s'", spistr); in parse_esp_spi() 40 "spi `%s' specified too big: would overflow", spistr); in parse_esp_spi() 42 if ( *spistr != '\0' && *ep != '\0' ) { in parse_esp_spi() 44 "ESP error parsing spi `%s'", spistr); in parse_esp_spi()
|
D | libip6t_ah.c | 31 parse_ah_spi(const char *spistr, const char *typestr) in parse_ah_spi() argument 36 spi = strtoul(spistr, &ep, 0); in parse_ah_spi() 38 if ( spistr == ep ) in parse_ah_spi() 40 "AH no valid digits in %s `%s'", typestr, spistr); in parse_ah_spi() 45 typestr, spistr); in parse_ah_spi() 47 if ( *spistr != '\0' && *ep != '\0' ) in parse_ah_spi() 49 "AH error parsing %s `%s'", typestr, spistr); in parse_ah_spi()
|
/external/tcpdump/ |
D | print-esp.c | 182 char *spistr, *foo; in esp_print_decode_onesecret() local 189 spistr = strsep(&spikey, "@"); in esp_print_decode_onesecret() 191 spino = strtoul(spistr, &foo, 0); in esp_print_decode_onesecret() 192 if (spistr == foo || !spikey) { in esp_print_decode_onesecret()
|