Lines Matching refs:yytext
242 bpf_error("%s not supported", yytext);
319 [+\-*/%:\[\]!<>()&|\^=] return yytext[0];
326 ${B} { yylval.e = pcap_ether_aton(((char *)yytext)+1);
330 {MAC} { yylval.e = pcap_ether_aton((char *)yytext);
334 {N} { yylval.i = stoi((char *)yytext); return NUM; }
336 yylval.s = sdup((char *)yytext); return HID; }
343 if (getaddrinfo(yytext, NULL, &hints, &res))
344 bpf_error("bogus IPv6 address %s", yytext);
347 yylval.s = sdup((char *)yytext); return HID6;
350 bpf_error("IPv6 address %s not supported", yytext);
353 {B}:+({B}:+)+ { bpf_error("bogus ethernet address %s", yytext); }
379 yylval.s = sdup((char *)yytext); return ID; }
380 "\\"[^ !()\n\t]+ { yylval.s = sdup((char *)yytext + 1); return ID; }
382 bpf_error("illegal token: %s", yytext); }
383 . { bpf_error("illegal char '%c'", *yytext); }