Searched refs:compiler_state_t (Results 1 – 8 of 8) sorted by relevance
/aosp_15_r20/external/libpcap/ |
H A D | gencode.h | 312 typedef struct _compiler_state compiler_state_t; typedef 314 struct arth *gen_loadi(compiler_state_t *, bpf_u_int32); 315 struct arth *gen_load(compiler_state_t *, int, struct arth *, bpf_u_int32); 316 struct arth *gen_loadlen(compiler_state_t *); 317 struct arth *gen_neg(compiler_state_t *, struct arth *); 318 struct arth *gen_arth(compiler_state_t *, int, struct arth *, struct arth *); 324 struct block *gen_scode(compiler_state_t *, const char *, struct qual); 325 struct block *gen_ecode(compiler_state_t *, const char *, struct qual); 326 struct block *gen_acode(compiler_state_t *, const char *, struct qual); 327 struct block *gen_mcode(compiler_state_t *, const char *, const char *, [all …]
|
H A D | gencode.c | 424 bpf_set_error(compiler_state_t *cstate, const char *fmt, ...) in bpf_set_error() 449 static void PCAP_NORETURN bpf_error(compiler_state_t *, const char *, ...) 454 bpf_error(compiler_state_t *cstate, const char *fmt, ...) in bpf_error() 469 static int init_linktype(compiler_state_t *, pcap_t *); 471 static void init_regs(compiler_state_t *); 472 static int alloc_reg(compiler_state_t *); 473 static void free_reg(compiler_state_t *, int); 475 static void initchunks(compiler_state_t *cstate); 476 static void *newchunk_nolongjmp(compiler_state_t *cstate, size_t); 477 static void *newchunk(compiler_state_t *cstate, size_t); [all …]
|
H A D | grammar.c | 282 yyerror(void *yyscanner _U_, compiler_state_t *cstate, const char *msg) in yyerror() 317 pfreason_to_num(compiler_state_t *cstate, const char *reason) in pfreason_to_num() 359 pfaction_to_num(compiler_state_t *cstate, const char *action) in pfaction_to_num() 1501 … yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep, void *yyscanner, compiler_state_t *cstate) in yy_symbol_value_print() 1521 … yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep, void *yyscanner, compiler_state_t *cstate) in yy_symbol_print() 1560 int yyrule, void *yyscanner, compiler_state_t *cstate) in yy_reduce_print() 1622 yysymbol_kind_t yykind, YYSTYPE *yyvaluep, void *yyscanner, compiler_state_t *cstate) in yydestruct() 1646 yyparse (void *yyscanner, compiler_state_t *cstate) in yyparse()
|
H A D | grammar.y.in | 45 %parse-param { compiler_state_t *cstate } 253 yyerror(void *yyscanner _U_, compiler_state_t *cstate, const char *msg) 288 pfreason_to_num(compiler_state_t *cstate, const char *reason) 330 pfaction_to_num(compiler_state_t *cstate, const char *action)
|
H A D | grammar.h | 212 int pcap_parse (void *yyscanner, compiler_state_t *cstate);
|
H A D | scanner.l | 152 static int stou(char *, YYSTYPE *, compiler_state_t *); 502 stou(char *yytext_arg, YYSTYPE *yylval_arg, compiler_state_t *yyextra_arg)
|
H A D | scanner.c | 3181 static int stou(char *, YYSTYPE *, compiler_state_t *); 3201 #define YY_EXTRA_TYPE compiler_state_t * 5636 stou(char *yytext_arg, YYSTYPE *yylval_arg, compiler_state_t *yyextra_arg) in stou()
|
H A D | scanner.h | 492 #define YY_EXTRA_TYPE compiler_state_t *
|