Searched refs:raw_command (Results 1 - 10 of 10) sorted by relevance

/linux-master/kernel/trace/
H A Dtrace_dynevent.c72 int dyn_event_release(const char *raw_command, struct dyn_event_operations *type) argument
79 argv = argv_split(GFP_KERNEL, raw_command, &argc);
128 static int create_dyn_event(const char *raw_command) argument
133 if (raw_command[0] == '-' || raw_command[0] == '!')
134 return dyn_event_release(raw_command, NULL);
138 ret = ops->create(raw_command);
H A Dtrace_dynevent.h42 int (*create)(const char *raw_command);
102 int dyn_event_release(const char *raw_command, struct dyn_event_operations *type);
H A Dtrace_events_synth.c87 static int create_synth_event(const char *raw_command);
1519 static int check_command(const char *raw_command) argument
1524 cmd = saved_cmd = kstrdup(raw_command, GFP_KERNEL);
1552 static int create_or_delete_synth_event(const char *raw_command) argument
1557 raw_command = skip_spaces(raw_command);
1558 if (raw_command[0] == '\0')
1561 last_cmd_set(raw_command);
1563 ret = check_command(raw_command);
1569 p = strpbrk(raw_command, " \
2135 create_synth_event(const char *raw_command) argument
[all...]
H A Dtrace_uprobe.c39 static int trace_uprobe_create(const char *raw_command);
719 int trace_uprobe_create(const char *raw_command) argument
721 return trace_probe_create(raw_command, __trace_uprobe_create);
724 static int create_or_delete_trace_uprobe(const char *raw_command) argument
728 if (raw_command[0] == '-')
729 return dyn_event_release(raw_command, &trace_uprobe_ops);
731 ret = trace_uprobe_create(raw_command);
H A Dtrace_events_user.c995 char *raw_command, struct user_event **newuser,
998 char *name = raw_command;
1772 static int user_event_create(const char *raw_command) argument
1779 if (!str_has_prefix(raw_command, USER_EVENTS_PREFIX))
1782 raw_command += USER_EVENTS_PREFIX_LEN;
1783 raw_command = skip_spaces(raw_command);
1785 name = kstrdup(raw_command, GFP_KERNEL_ACCOUNT);
994 user_event_parse_cmd(struct user_event_group *group, char *raw_command, struct user_event **newuser, int reg_flags) argument
H A Dtrace_kprobe.c40 static int trace_kprobe_create(const char *raw_command);
991 static int trace_kprobe_create(const char *raw_command) argument
993 return trace_probe_create(raw_command, __trace_kprobe_create);
996 static int create_or_delete_trace_kprobe(const char *raw_command) argument
1000 if (raw_command[0] == '-')
1001 return dyn_event_release(raw_command, &trace_kprobe_ops);
1003 ret = trace_kprobe_create(raw_command);
H A Dtrace_fprobe.c25 static int trace_fprobe_create(const char *raw_command);
1166 static int trace_fprobe_create(const char *raw_command) argument
1168 return trace_probe_create(raw_command, __trace_fprobe_create);
H A Dtrace_probe.h362 int trace_probe_create(const char *raw_command, int (*createfn)(int, const char **));
H A Dtrace_eprobe.c68 static int eprobe_dyn_event_create(const char *raw_command) argument
70 return trace_probe_create(raw_command, __trace_eprobe_create);
H A Dtrace_probe.c2123 int trace_probe_create(const char *raw_command, int (*createfn)(int, const char **)) argument
2128 argv = argv_split(GFP_KERNEL, raw_command, &argc);

Completed in 201 milliseconds