Lines Matching defs:probe
101 struct bt_probe *probe;
115 static int pflag = 0; /* probe parsing context flag */
131 %type <v.probe> plist probe pname
149 plist : plist ',' probe { $$ = bp_append($1, $3); }
150 | probe
153 probe : { pflag = 1; } pname { $$ = $2; pflag = 0; }
299 /* Create a new rule, representing "probe / filter / { action }" */
301 br_new(struct bt_probe *probe, struct bt_filter *filter, struct bt_stmt *head)
309 SLIST_FIRST(&br->br_probes) = probe;
318 if (probe->bp_type != B_PT_PROBE)
321 } while ((probe = SLIST_NEXT(probe, bp_next)) != NULL);
401 /* Create a new probe */
427 * Link two probes together, to build a probe list attached to
776 { "probe", BUILTIN, B_AT_BI_PROBE },