Lines Matching refs:argc
49 static int __trace_eprobe_create(int argc, const char *argv[]);
129 int argc, const char **argv, struct dyn_event *ev) in eprobe_dyn_event_match() argument
161 if (argc < 1) in eprobe_dyn_event_match()
177 argc--; in eprobe_dyn_event_match()
181 if (argc < 1) in eprobe_dyn_event_match()
184 return trace_probe_match_command_args(&ep->tp, argc, argv); in eprobe_dyn_event_match()
823 static int trace_eprobe_parse_filter(struct trace_eprobe *ep, int argc, const char *argv[]) in trace_eprobe_parse_filter() argument
829 if (argc == 0) { in trace_eprobe_parse_filter()
835 for (i = 0; i < argc; i++) in trace_eprobe_parse_filter()
843 for (i = 0; i < argc; i++) { in trace_eprobe_parse_filter()
869 static int __trace_eprobe_create(int argc, const char *argv[]) in __trace_eprobe_create() argument
887 if (argc < 2 || argv[0][0] != 'e') in __trace_eprobe_create()
890 trace_probe_log_init("event_probe", argc, argv); in __trace_eprobe_create()
924 for (i = 2; i < argc; i++) { in __trace_eprobe_create()
927 filter_cnt = argc - filter_idx; in __trace_eprobe_create()
928 argc = i; in __trace_eprobe_create()
933 if (argc - 2 > MAX_TRACE_ARGS) { in __trace_eprobe_create()
942 ep = alloc_event_probe(group, event, event_call, argc - 2); in __trace_eprobe_create()
963 argc -= 2; argv += 2; in __trace_eprobe_create()
965 for (i = 0; i < argc; i++) { in __trace_eprobe_create()