Searched refs:YY_STR (Results 1 – 7 of 7) sorted by relevance
| /src/sbin/ipf/ipscan/ |
| H A D | ipscan_y.y | 62 %token <str> YY_STR 89 gline: YY_STR ':' glist '=' action 97 assign: YY_STR assigning YY_STR 119 glist: YY_STR 120 | glist ',' YY_STR 123 tag: YY_STR { $$ = $1; } 154 '(' YY_STR ')' { $$ = makepair($2, NULL); } 158 '(' YY_STR ',' YY_STR ')' { $$ = makepair($2, $4); } 172 | YY_STR { $$ = gethostip($1); 179 | YY_STR { $$ = getportnum($1);
|
| /src/sbin/ipf/ipnat/ |
| H A D | ipnat_y.y | 100 %token <str> YY_STR 152 assign: YY_STR assigning YY_STR ';' { set_variable($1, $3); 404 IPNY_DNS '/' proto IPNY_CONFIG YY_STR '{' 418 IPNY_ALLOW YY_STR { $$ = proxy_dns_add_pass(NULL, $2); } 419 | IPNY_DENY YY_STR { $$ = proxy_dns_add_block(NULL, $2); } 420 | IPNY_ALLOW '.' YY_STR { $$ = proxy_dns_add_pass(".", $3); } 421 | IPNY_DENY '.' YY_STR { $$ = proxy_dns_add_block(".", $3); } 519 proxy: | IPNY_PROXY port portspec YY_STR '/' proto 532 | IPNY_PROXY port YY_STR YY_STR '/' proto 545 | IPNY_PROXY port portspec YY_STR '/' proto IPNY_CONFIG YY_STR [all …]
|
| /src/sbin/ipf/ipmon/ |
| H A D | ipmon_y.y | 62 %token <str> YY_STR 96 | IPM_LOADACTION YY_STR YY_STR { if (install_saver($2, $3)) 101 assign: YY_STR assigning YY_STR { set_variable($1, $3); 141 YY_STR { if (find_doing($1) != IPM_DOING) 144 '(' YY_STR ')' { $$ = build_doing($1, $4); 148 | YY_STR { if (find_doing($1) == IPM_DOING) 168 | IPM_DSTPORT '=' YY_STR { $$ = new_opt(IPM_DSTPORT); 184 | IPM_GROUP '=' YY_STR { $$ = new_opt(IPM_GROUP); 189 IPM_INTERFACE '=' YY_STR { $$ = new_opt(IPM_INTERFACE); 197 nattag: IPM_NATTAG '=' YY_STR { $$ = new_opt(IPM_NATTAG); [all …]
|
| /src/sbin/ipf/ippool/ |
| H A D | ippool_y.y | 71 %token <str> YY_STR 143 assign: YY_STR assigning YY_STR ';' { set_variable($1, $3); 223 | IPT_NAME '=' YY_STR { strncpy(poolname, $3, 233 IPT_GROUP '=' YY_STR { char tmp[FR_GROUPLEN+1]; 280 | YY_STR { $$ = add_htablehosts($1); 333 | YY_STR { $$ = add_poolhosts($1); 336 | IPT_WHOIS IPT_FILE YY_STR { $$ = read_whoisfile($3); 358 | YY_STR { $$ = add_htablehosts($1); 516 name: IPT_NAME YY_STR { $$ = $2; } 543 YY_STR ':' ipaddr { int size = sizeof(*$$) + strlen($1) + 1;
|
| /src/sbin/ipf/common/ |
| H A D | ipf_y.y | 119 %token <str> YY_STR 203 IPFY_SET YY_STR YY_NUMBER ';' { do_tuneint($2, $3); } 204 | IPFY_SET YY_STR YY_HEX ';' { do_tuneint($2, $3); } 205 | IPFY_SET YY_STR YY_STR ';' { do_tunestr($2, $3); } 227 assign: YY_STR assigning YY_STR ';' { set_variable($1, $3); 303 IPFY_BPFV4 '{' YY_STR '}' { dobpf(4, $3); free($3); } 304 | IPFY_BPFV6 '{' YY_STR '}' { dobpf(6, $3); free($3); } 308 IPFY_IPFEXPR '{' YY_STR '}' { doipfexpr($3); } 362 | IPFY_DECAPS IPFY_L5AS '(' YY_STR ')' 375 func: YY_STR '/' YY_NUMBER [all …]
|
| H A D | lexer.c | 321 rval = YY_STR; in yylex() 557 rval = YY_STR; in yylex() 560 if (rval == YY_STR) { in yylex() 584 case YY_STR : in yylex() 656 } else if (yytokentype == YY_STR || yytokentype == YY_HEX || in yyerror()
|
| H A D | lexer.h | 18 #define YY_STR 1009 macro
|