Searched refs:compiler_state_t (Results 1 – 8 of 8) sorted by relevance
/external/libpcap/ |
D | gencode.h | 300 typedef struct _compiler_state compiler_state_t; typedef 302 struct arth *gen_loadi(compiler_state_t *, bpf_u_int32); 303 struct arth *gen_load(compiler_state_t *, int, struct arth *, bpf_u_int32); 304 struct arth *gen_loadlen(compiler_state_t *); 305 struct arth *gen_neg(compiler_state_t *, struct arth *); 306 struct arth *gen_arth(compiler_state_t *, int, struct arth *, struct arth *); 312 struct block *gen_scode(compiler_state_t *, const char *, struct qual); 313 struct block *gen_ecode(compiler_state_t *, const char *, struct qual); 314 struct block *gen_acode(compiler_state_t *, const char *, struct qual); 315 struct block *gen_mcode(compiler_state_t *, const char *, const char *, [all …]
|
D | gencode.c | 431 bpf_set_error(compiler_state_t *cstate, const char *fmt, ...) in bpf_set_error() 456 static void PCAP_NORETURN bpf_error(compiler_state_t *, const char *, ...) 461 bpf_error(compiler_state_t *cstate, const char *fmt, ...) in bpf_error() 473 static int init_linktype(compiler_state_t *, pcap_t *); 475 static void init_regs(compiler_state_t *); 476 static int alloc_reg(compiler_state_t *); 477 static void free_reg(compiler_state_t *, int); 479 static void initchunks(compiler_state_t *cstate); 480 static void *newchunk_nolongjmp(compiler_state_t *cstate, size_t); 481 static void *newchunk(compiler_state_t *cstate, size_t); [all …]
|
D | grammar.c | 271 yyerror(void *yyscanner _U_, compiler_state_t *cstate, const char *msg) in yyerror() 278 pfreason_to_num(compiler_state_t *cstate, const char *reason) in pfreason_to_num() 292 pfaction_to_num(compiler_state_t *cstate, const char *action) in pfaction_to_num() 317 pfreason_to_num(compiler_state_t *cstate, const char *reason _U_) in pfreason_to_num() 324 pfaction_to_num(compiler_state_t *cstate, const char *action _U_) in pfaction_to_num() 660 int pcap_parse (void *yyscanner, compiler_state_t *cstate); 1551 … (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep, void *yyscanner, compiler_state_t *cstate) in yy_symbol_value_print() 1574 … (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep, void *yyscanner, compiler_state_t *cstate) in yy_symbol_print() 1612 yy_reduce_print (yy_state_t *yyssp, YYSTYPE *yyvsp, int yyrule, void *yyscanner, compiler_state_t *… in yy_reduce_print() 1902 yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, void *yyscanner, compiler_state_t *cs… in yydestruct() [all …]
|
D | grammar.y.in | 45 %parse-param { compiler_state_t *cstate } 252 yyerror(void *yyscanner _U_, compiler_state_t *cstate, const char *msg) 259 pfreason_to_num(compiler_state_t *cstate, const char *reason) 273 pfaction_to_num(compiler_state_t *cstate, const char *action) 298 pfreason_to_num(compiler_state_t *cstate, const char *reason _U_) 305 pfaction_to_num(compiler_state_t *cstate, const char *action _U_)
|
D | grammar.h | 325 int pcap_parse (void *yyscanner, compiler_state_t *cstate);
|
D | scanner.l | 149 static int stou(char *, YYSTYPE *, compiler_state_t *); 499 stou(char *yytext_arg, YYSTYPE *yylval_arg, compiler_state_t *yyextra_arg)
|
D | scanner.h | 485 #define YY_EXTRA_TYPE compiler_state_t *
|
D | scanner.c | 3156 #define YY_EXTRA_TYPE compiler_state_t *
|