Searched refs:raw_command (Results 1 – 11 of 11) sorted by relevance
/openbmc/linux/kernel/trace/ |
H A D | trace_dynevent.c | 72 int dyn_event_release(const char *raw_command, struct dyn_event_operations *type) in dyn_event_release() argument 79 argv = argv_split(GFP_KERNEL, raw_command, &argc); in dyn_event_release() 128 static int create_dyn_event(const char *raw_command) in create_dyn_event() argument 133 if (raw_command[0] == '-' || raw_command[0] == '!') in create_dyn_event() 134 return dyn_event_release(raw_command, NULL); in create_dyn_event() 138 ret = ops->create(raw_command); in create_dyn_event()
|
H A D | trace_events_synth.c | 87 static int create_synth_event(const char *raw_command); 1519 static int check_command(const char *raw_command) in check_command() argument 1524 cmd = saved_cmd = kstrdup(raw_command, GFP_KERNEL); in check_command() 1552 static int create_or_delete_synth_event(const char *raw_command) in create_or_delete_synth_event() argument 1557 raw_command = skip_spaces(raw_command); in create_or_delete_synth_event() 1558 if (raw_command[0] == '\0') in create_or_delete_synth_event() 1561 last_cmd_set(raw_command); in create_or_delete_synth_event() 1563 ret = check_command(raw_command); in create_or_delete_synth_event() 1569 p = strpbrk(raw_command, " \t"); in create_or_delete_synth_event() 1570 if (!p && raw_command[0] != '!') { in create_or_delete_synth_event() [all …]
|
H A D | trace_dynevent.h | 42 int (*create)(const char *raw_command); 102 int dyn_event_release(const char *raw_command, struct dyn_event_operations *type);
|
H A D | trace_uprobe.c | 39 static int trace_uprobe_create(const char *raw_command); 721 int trace_uprobe_create(const char *raw_command) in trace_uprobe_create() argument 723 return trace_probe_create(raw_command, __trace_uprobe_create); in trace_uprobe_create() 726 static int create_or_delete_trace_uprobe(const char *raw_command) in create_or_delete_trace_uprobe() argument 730 if (raw_command[0] == '-') in create_or_delete_trace_uprobe() 731 return dyn_event_release(raw_command, &trace_uprobe_ops); in create_or_delete_trace_uprobe() 733 ret = trace_uprobe_create(raw_command); in create_or_delete_trace_uprobe()
|
H A D | trace_kprobe.c | 40 static int trace_kprobe_create(const char *raw_command); 995 static int trace_kprobe_create(const char *raw_command) in trace_kprobe_create() argument 997 return trace_probe_create(raw_command, __trace_kprobe_create); in trace_kprobe_create() 1000 static int create_or_delete_trace_kprobe(const char *raw_command) in create_or_delete_trace_kprobe() argument 1004 if (raw_command[0] == '-') in create_or_delete_trace_kprobe() 1005 return dyn_event_release(raw_command, &trace_kprobe_ops); in create_or_delete_trace_kprobe() 1007 ret = trace_kprobe_create(raw_command); in create_or_delete_trace_kprobe()
|
H A D | trace_events_user.c | 977 char *raw_command, struct user_event **newuser, in user_event_parse_cmd() argument 980 char *name = raw_command; in user_event_parse_cmd() 1737 static int user_event_create(const char *raw_command) in user_event_create() argument 1744 if (!str_has_prefix(raw_command, USER_EVENTS_PREFIX)) in user_event_create() 1747 raw_command += USER_EVENTS_PREFIX_LEN; in user_event_create() 1748 raw_command = skip_spaces(raw_command); in user_event_create() 1750 name = kstrdup(raw_command, GFP_KERNEL_ACCOUNT); in user_event_create()
|
H A D | trace_fprobe.c | 25 static int trace_fprobe_create(const char *raw_command); 1172 static int trace_fprobe_create(const char *raw_command) in trace_fprobe_create() 1174 return trace_probe_create(raw_command, __trace_fprobe_create); 1170 trace_fprobe_create(const char * raw_command) trace_fprobe_create() argument
|
H A D | trace_eprobe.c | 68 static int eprobe_dyn_event_create(const char *raw_command) in eprobe_dyn_event_create() argument 70 return trace_probe_create(raw_command, __trace_eprobe_create); in eprobe_dyn_event_create()
|
H A D | trace_probe.h | 361 int trace_probe_create(const char *raw_command, int (*createfn)(int, const char **));
|
H A D | trace_probe.c | 2083 int trace_probe_create(const char *raw_command, int (*createfn)(int, const char **)) in trace_probe_create() argument 2088 argv = argv_split(GFP_KERNEL, raw_command, &argc); in trace_probe_create()
|
/openbmc/openbmc-test-automation/ipmi/ |
H A D | test_ipmi_payload.robot | 160 ${raw_command}= Catenate ${IPMI_RAW_CMD['Payload']['Get_User_Access_Payload'][0]} 164 ... Run External IPMI Raw Command ${raw_command} U=${userid} P=${new_user_passwd} L=User 286 ${raw_command}= Catenate ${IPMI_RAW_CMD['Payload']['Get_User_Access_Payload'][0]} 288 ${resp}= Run IPMI Command ${raw_command}
|