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()
566 static int traceprobe_parse_probe_arg_body(const char *argv, ssize_t *size, in traceprobe_parse_probe_arg_body() argument
574 arg = kstrdup(argv, GFP_KERNEL); in traceprobe_parse_probe_arg_body()
1202 int argc, const char **argv) in trace_probe_match_command_args() argument
1213 if (strcmp(buf, argv[i])) in trace_probe_match_command_args()
1222 char **argv; in trace_probe_create() local
1224 argv = argv_split(GFP_KERNEL, raw_command, &argc); in trace_probe_create()
1225 if (!argv) in trace_probe_create()
1229 ret = createfn(argc, (const char **)argv); in trace_probe_create()
1231 argv_free(argv); in trace_probe_create()