Home | History | Annotate | Download | only in traceevent

Lines Matching defs:etype

400 create_arg_exp(enum filter_exp_type etype)
406 arg->op.type = etype;
412 create_arg_cmp(enum filter_exp_type etype)
419 arg->op.type = etype;
634 enum filter_exp_type *etype)
637 *etype = FILTER_EXP_NONE;
652 *etype = FILTER_EXP_ADD;
654 *etype = FILTER_EXP_SUB;
656 *etype = FILTER_EXP_MUL;
658 *etype = FILTER_EXP_DIV;
660 *etype = FILTER_EXP_MOD;
662 *etype = FILTER_EXP_RSHIFT;
664 *etype = FILTER_EXP_LSHIFT;
666 *etype = FILTER_EXP_AND;
668 *etype = FILTER_EXP_OR;
670 *etype = FILTER_EXP_XOR;
672 *etype = FILTER_EXP_NOT;
674 if (*etype != FILTER_EXP_NONE)
899 enum filter_exp_type etype;
999 op_type = process_op(token, &btype, &ctype, &etype);
1054 arg = create_arg_exp(etype);