Searched refs:trace (Results 1 - 25 of 1241) sorted by relevance

1234567891011>>

/linux-master/tools/testing/selftests/ftrace/test.d/kprobe/
H A Dkprobe_ftrace.tc13 echo > trace
15 grep testprobe trace
16 ! grep "$FUNCTION_FORK <-" trace
20 echo > trace
22 grep testprobe trace
23 grep "$FUNCTION_FORK <-" trace
27 echo > trace
29 ! grep testprobe trace
30 grep "$FUNCTION_FORK <-" trace
35 echo > trace
[all...]
H A Dkretprobe_entry_arg.tc11 echo > trace
12 cat trace > /dev/null
18 streq `grep -A 1 -m 1 myevent1 trace | sed -r 's/^.*(arg=.*)/\1/' `
/linux-master/tools/verification/rv/src/
H A Dtrace.c3 * trace helpers.
16 #include <trace.h>
20 * create_instance - create a trace instance with *instance_name
28 * destroy_instance - remove a trace instance and free the data
42 * Returns 0 if the event was collected, 1 if the tool should stop collecting trace.
48 struct trace_instance *trace = context; local
49 struct trace_seq *s = trace->seq;
63 * trace_instance_destroy - destroy and free a rv trace instance
65 void trace_instance_destroy(struct trace_instance *trace) argument
67 if (trace
96 trace_instance_init(struct trace_instance *trace, char *name) argument
130 trace_instance_start(struct trace_instance *trace) argument
[all...]
/linux-master/drivers/infiniband/core/
H A Dtrace.c12 #include <trace/events/rdma_core.h>
/linux-master/samples/trace_printk/
H A DMakefile7 obj-$(CONFIG_SAMPLE_TRACE_PRINTK) += trace-printk.o
/linux-master/arch/powerpc/mm/book3s64/
H A Dtrace.c3 * This file is for defining trace points and trace related helpers.
6 #include <trace/events/thp.h>
/linux-master/tools/testing/selftests/ftrace/test.d/00basic/
H A Dtrace_pipe.tc9 : "trace interface never consume the ring buffer"
10 grep -q "test input 1" trace
11 grep -q "test input 1" trace
13 : "trace interface never consume the ring buffer"
15 ! grep -q "test input 1" trace
/linux-master/tools/testing/selftests/ftrace/test.d/event/
H A Dtrace_printk.tc5 rmmod trace-printk ||:
6 if ! modprobe trace-printk ; then
7 echo "No trace-printk sample module - please make CONFIG_SAMPLE_TRACE_PRINTK=m"
14 grep -q ": This .* trace_bputs" trace
15 grep -q ": This .* trace_puts" trace
16 grep -q ": This .* trace_bprintk" trace
17 grep -q ": This .* trace_printk" trace
19 grep -q ": (irq) .* trace_bputs" trace
20 grep -q ": (irq) .* trace_puts" trace
21 grep -q ": (irq) .* trace_bprintk" trace
[all...]
/linux-master/arch/openrisc/kernel/
H A Dstacktrace.c2 * Stack trace utility for OpenRISC
28 struct stack_trace *trace = data; local
33 if (trace->skip > 0) {
34 trace->skip--;
38 if (trace->nr_entries < trace->max_entries)
39 trace->entries[trace->nr_entries++] = addr;
42 void save_stack_trace(struct stack_trace *trace) argument
44 unwind_stack(trace, (unsigne
51 struct stack_trace *trace = (struct stack_trace *)data; local
68 save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace) argument
95 save_stack_trace_regs(struct pt_regs *regs, struct stack_trace *trace) argument
[all...]
/linux-master/tools/virtio/virtio-trace/
H A DMakefile5 all: trace-agent
10 trace-agent: trace-agent.o trace-agent-ctl.o trace-agent-rw.o
14 rm -f *.o trace-agent
/linux-master/tools/testing/selftests/ftrace/test.d/dynevent/
H A Dfprobe_entry_arg.tc11 echo > trace
12 cat trace > /dev/null
18 streq `grep -A 1 -m 1 myevent1 trace | sed -r 's/^.*(arg=.*)/\1/' `
/linux-master/arch/sh/kernel/
H A Dstacktrace.c5 * Stack trace management functions
23 struct stack_trace *trace = data; local
28 if (trace->skip > 0) {
29 trace->skip--;
33 if (trace->nr_entries < trace->max_entries)
34 trace->entries[trace->nr_entries++] = addr;
41 void save_stack_trace(struct stack_trace *trace) argument
45 unwind_stack(current, NULL, sp, &save_stack_ops, trace);
52 struct stack_trace *trace = (struct stack_trace *)data; local
73 save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace) argument
[all...]
/linux-master/arch/mips/kernel/
H A Dstacktrace.c3 * Stack trace management functions
17 static void save_raw_context_stack(struct stack_trace *trace, argument
27 if (trace->skip > 0)
28 trace->skip--;
30 trace->entries[trace->nr_entries++] = addr;
31 if (trace->nr_entries >= trace->max_entries)
37 static void save_context_stack(struct stack_trace *trace, argument
50 save_raw_context_stack(trace, s
72 save_stack_trace(struct stack_trace *trace) argument
78 save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace) argument
[all...]
/linux-master/include/linux/
H A Dbpf_trace.h5 #include <trace/events/xdp.h>
/linux-master/kernel/trace/
H A Derror_report-traces.c3 * Error reporting trace points.
9 #include <trace/events/error_report.h>
H A Dtrace_stat.h16 void *(*stat_start)(struct tracer_stat *trace);
31 extern int register_stat_tracer(struct tracer_stat *trace);
32 extern void unregister_stat_tracer(struct tracer_stat *trace);
/linux-master/tools/testing/selftests/ftrace/test.d/tracer/
H A Dwakeup_rt.tc14 grep "+ \[[[:digit:]]*\]" trace
15 grep "==> \[[[:digit:]]*\]" trace
H A Dwakeup.tc14 grep '+ \[[[:digit:]]*\]' trace
15 grep '==> \[[[:digit:]]*\]' trace
/linux-master/tools/testing/selftests/ftrace/test.d/ftrace/
H A Dfunc_profiler.tc43 if grep -v -e '^#' -e 'schedule' trace; then
48 if ! grep -e 'schedule' trace > /dev/null; then
49 cat trace
50 fail "can not find schedule in trace"
59 if ! grep -v -e '^#' -e 'schedule' trace > /dev/null; then
60 cat trace
/linux-master/arch/microblaze/kernel/
H A Dstacktrace.c2 * Stack trace support for Microblaze.
19 void save_stack_trace(struct stack_trace *trace) argument
21 /* Exclude our helper functions from the trace*/
22 trace->skip += 2;
23 microblaze_unwind(NULL, trace, "");
27 void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace) argument
29 microblaze_unwind(tsk, trace, "");
/linux-master/arch/openrisc/include/asm/
H A Dunwinder.h17 void (*trace)(void *data, unsigned long addr,
/linux-master/drivers/gpu/trace/
H A Dtrace_gpu_mem.c3 * GPU memory trace points
11 #include <trace/events/gpu_mem.h>
/linux-master/tools/verification/rv/include/
H A Dtrace.h11 int trace_instance_init(struct trace_instance *trace, char *name);
12 int trace_instance_start(struct trace_instance *trace);
13 void trace_instance_destroy(struct trace_instance *trace);
/linux-master/arch/sparc/kernel/
H A Dstacktrace.c14 struct stack_trace *trace,
55 if (trace->skip > 0)
56 trace->skip--;
58 trace->entries[trace->nr_entries++] = pc;
66 if (trace->nr_entries <
67 trace->max_entries)
68 trace->entries[trace->nr_entries++] = pc;
74 } while (trace
13 __save_stack_trace(struct thread_info *tp, struct stack_trace *trace, bool skip_sched) argument
77 save_stack_trace(struct stack_trace *trace) argument
79 __save_stack_trace(current_thread_info(), trace, false); local
83 save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace) argument
[all...]
/linux-master/arch/um/kernel/
H A Dstacktrace.c46 struct stack_trace *trace = data; local
50 if (trace->nr_entries >= trace->max_entries)
53 trace->entries[trace->nr_entries++] = address;
60 static void __save_stack_trace(struct task_struct *tsk, struct stack_trace *trace) argument
62 dump_trace(tsk, &dump_ops, trace);
65 void save_stack_trace(struct stack_trace *trace) argument
67 __save_stack_trace(current, trace);
71 void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace) argument
[all...]

Completed in 282 milliseconds

1234567891011>>