Lines Matching refs:str
126 static int __init set_cmdline_ftrace(char *str) in set_cmdline_ftrace() argument
128 strlcpy(bootup_tracer_buf, str, MAX_TRACER_SIZE); in set_cmdline_ftrace()
136 static int __init set_ftrace_dump_on_oops(char *str) in set_ftrace_dump_on_oops() argument
138 if (*str++ != '=' || !*str) { in set_ftrace_dump_on_oops()
143 if (!strcmp("orig_cpu", str)) { in set_ftrace_dump_on_oops()
152 static int __init boot_alloc_snapshot(char *str) in boot_alloc_snapshot() argument
165 static int __init set_trace_boot_options(char *str) in set_trace_boot_options() argument
167 strlcpy(trace_boot_options_buf, str, MAX_TRACER_SIZE); in set_trace_boot_options()
359 int __trace_puts(unsigned long ip, const char *str, int size) in __trace_puts() argument
379 memcpy(&entry->buf, str, size); in __trace_puts()
399 int __trace_bputs(unsigned long ip, const char *str) in __trace_bputs() argument
416 entry->str = str; in __trace_bputs()
576 static int __init set_buf_size(char *str) in set_buf_size() argument
580 if (!str) in set_buf_size()
582 buf_size = memparse(str, &str); in set_buf_size()
591 static int __init set_tracing_thresh(char *str) in set_tracing_thresh() argument
596 if (!str) in set_tracing_thresh()
598 ret = kstrtoul(str, 0, &threshold); in set_tracing_thresh()