Lines Matching refs:argv
147 void trace_probe_log_init(const char *subsystem, int argc, const char **argv) in trace_probe_log_init() argument
151 trace_probe_log.argv = argv; in trace_probe_log_init()
170 if (!trace_probe_log.argv) in __trace_probe_log_err()
177 len += strlen(trace_probe_log.argv[i]) + 1; in __trace_probe_log_err()
196 len = strlen(trace_probe_log.argv[i]); in __trace_probe_log_err()
197 strcpy(p, trace_probe_log.argv[i]); in __trace_probe_log_err()
562 static int traceprobe_parse_probe_arg_body(const char *argv, ssize_t *size, in traceprobe_parse_probe_arg_body() argument
570 arg = kstrdup(argv, GFP_KERNEL); in traceprobe_parse_probe_arg_body()
1199 int argc, const char **argv) in trace_probe_match_command_args() argument
1210 if (strcmp(buf, argv[i])) in trace_probe_match_command_args()
1219 char **argv; in trace_probe_create() local
1221 argv = argv_split(GFP_KERNEL, raw_command, &argc); in trace_probe_create()
1222 if (!argv) in trace_probe_create()
1226 ret = createfn(argc, (const char **)argv); in trace_probe_create()
1228 argv_free(argv); in trace_probe_create()