Lines Matching refs:argv
47 int argc, const char **argv, struct dyn_event *ev);
282 int argc, const char **argv) in trace_uprobe_match_command_head() argument
291 if (strncmp(tu->filename, argv[0], len) || argv[0][len] != ':') in trace_uprobe_match_command_head()
301 if (strcmp(buf, &argv[0][len + 1])) in trace_uprobe_match_command_head()
304 argc--; argv++; in trace_uprobe_match_command_head()
306 return trace_probe_match_command_args(&tu->tp, argc, argv); in trace_uprobe_match_command_head()
310 int argc, const char **argv, struct dyn_event *ev) in trace_uprobe_match() argument
317 trace_uprobe_match_command_head(tu, argc, argv); in trace_uprobe_match()
540 static int __trace_uprobe_create(int argc, const char **argv) in __trace_uprobe_create() argument
555 switch (argv[0][0]) { in __trace_uprobe_create()
568 trace_probe_log_init("trace_uprobe", argc, argv); in __trace_uprobe_create()
576 if (argv[0][1] == ':') in __trace_uprobe_create()
577 event = &argv[0][2]; in __trace_uprobe_create()
579 if (!strchr(argv[1], '/')) in __trace_uprobe_create()
582 filename = kstrdup(argv[1], GFP_KERNEL); in __trace_uprobe_create()
663 event - argv[0]); in __trace_uprobe_create()
689 argv += 2; in __trace_uprobe_create()
714 ret = traceprobe_parse_probe_arg(&tu->tp, i, argv[i], ctx); in __trace_uprobe_create()