/Linux-v4.19/tools/perf/util/ |
D | svghelper.h | 12 void svg_blocked(int Yslot, int cpu, u64 start, u64 end, const char *backtrace); 13 void svg_running(int Yslot, int cpu, u64 start, u64 end, const char *backtrace); 14 void svg_waiting(int Yslot, int cpu, u64 start, u64 end, const char *backtrace); 18 void svg_process(int cpu, u64 start, u64 end, int pid, const char *name, const char *backtrace); 26 void svg_wakeline(u64 start, int row1, int row2, const char *backtrace); 27 …g_partial_wakeline(u64 start, int row1, char *desc1, int row2, char *desc2, const char *backtrace); 28 void svg_interrupt(u64 start, int row, const char *backtrace);
|
D | svghelper.c | 222 void svg_blocked(int Yslot, int cpu, u64 start, u64 end, const char *backtrace) in svg_blocked() argument 230 if (backtrace) in svg_blocked() 231 fprintf(svgfile, "<desc>Blocked on:\n%s</desc>\n", backtrace); in svg_blocked() 236 void svg_running(int Yslot, int cpu, u64 start, u64 end, const char *backtrace) in svg_running() argument 252 if (backtrace) in svg_running() 253 fprintf(svgfile, "<desc>Switched because:\n%s</desc>\n", backtrace); in svg_running() 290 void svg_waiting(int Yslot, int cpu, u64 start, u64 end, const char *backtrace) in svg_waiting() argument 315 if (backtrace) in svg_waiting() 316 fprintf(svgfile, "<desc>Waiting on:\n%s</desc>\n", backtrace); in svg_waiting() 384 void svg_process(int cpu, u64 start, u64 end, int pid, const char *name, const char *backtrace) in svg_process() argument [all …]
|
/Linux-v4.19/kernel/ |
D | latencytop.c | 110 if (!latency_record[i].backtrace[0]) { in account_global_scheduler_latency() 116 unsigned long record = lat->backtrace[q]; in account_global_scheduler_latency() 118 if (latency_record[i].backtrace[q] != record) { in account_global_scheduler_latency() 154 trace.entries = &lat->backtrace[0]; in store_stacktrace() 206 unsigned long record = lat.backtrace[q]; in __account_scheduler_latency() 208 if (mylat->backtrace[q] != record) { in __account_scheduler_latency() 249 if (lr->backtrace[0]) { in lstats_show() 254 unsigned long bt = lr->backtrace[q]; in lstats_show()
|
/Linux-v4.19/drivers/oprofile/ |
D | cpu_buffer.c | 184 op_add_code(struct oprofile_cpu_buffer *cpu_buf, unsigned long backtrace, in op_add_code() argument 194 if (backtrace) in op_add_code() 263 unsigned long backtrace, int is_kernel, unsigned long event, in log_sample() argument 274 if (op_add_code(cpu_buf, backtrace, is_kernel, tsk)) in log_sample() 303 unsigned long backtrace = oprofile_backtrace_depth; in __oprofile_add_ext_sample() local 309 if (!log_sample(cpu_buf, pc, backtrace, is_kernel, event, task)) in __oprofile_add_ext_sample() 313 if (!backtrace) in __oprofile_add_ext_sample() 317 oprofile_ops.backtrace(regs, backtrace); in __oprofile_add_ext_sample()
|
/Linux-v4.19/tools/perf/ |
D | builtin-timechart.c | 148 const char *backtrace; member 189 const char *backtrace; member 271 const char *backtrace) in pid_put_sample() argument 294 sample->backtrace = backtrace; in pid_put_sample() 409 int waker, int wakee, u8 flags, const char *backtrace) in sched_wakeup() argument 419 we->backtrace = backtrace; in sched_wakeup() 443 const char *backtrace) in sched_switch() argument 454 backtrace); in sched_switch() 459 backtrace); in sched_switch() 552 const char *backtrace); [all …]
|
/Linux-v4.19/tools/include/linux/ |
D | stacktrace.h | 20 backtrace((void **)(trace)->entries, (trace)->max_entries)) 27 size = backtrace(array, 64); in dump_stack()
|
/Linux-v4.19/arch/sh/oprofile/ |
D | common.c | 39 ops->backtrace = sh_backtrace; in oprofile_arch_init() 60 ops->backtrace = sh_backtrace; in oprofile_arch_init()
|
D | Makefile | 16 oprofile-y := $(DRIVER_OBJS) common.o backtrace.o
|
/Linux-v4.19/tools/build/feature/ |
D | test-backtrace.c | 10 entries = backtrace(backtrace_fns, 10); in main()
|
/Linux-v4.19/arch/xtensa/oprofile/ |
D | init.c | 19 ops->backtrace = xtensa_backtrace; in oprofile_arch_init()
|
D | Makefile | 10 oprofile-y := $(DRIVER_OBJS) init.o backtrace.o
|
/Linux-v4.19/arch/x86/oprofile/ |
D | init.c | 31 ops->backtrace = x86_backtrace; in oprofile_arch_init()
|
D | Makefile | 10 oprofile-y := $(DRIVER_OBJS) init.o backtrace.o
|
/Linux-v4.19/arch/ia64/oprofile/ |
D | init.c | 27 ops->backtrace = ia64_backtrace; in oprofile_arch_init()
|
D | Makefile | 10 oprofile-y := $(DRIVER_OBJS) init.o backtrace.o
|
/Linux-v4.19/arch/s390/oprofile/ |
D | init.c | 37 ops->backtrace = s390_backtrace; in oprofile_arch_init()
|
/Linux-v4.19/include/linux/ |
D | latencytop.h | 22 unsigned long backtrace[LT_BACKTRACEDEPTH]; member
|
/Linux-v4.19/arch/mips/oprofile/ |
D | Makefile | 10 oprofile-y := $(DRIVER_OBJS) common.o backtrace.o
|
/Linux-v4.19/arch/sh/kernel/cpu/sh5/ |
D | switchto.S | 47 ! Do normal-style register save to support backtrace 53 ! hopefully this looks normal to the backtrace now. 108 ! backtrace
|
/Linux-v4.19/arch/powerpc/oprofile/ |
D | Makefile | 14 oprofile-y := $(DRIVER_OBJS) common.o backtrace.o
|
/Linux-v4.19/arch/unicore32/lib/ |
D | Makefile | 8 lib-y := backtrace.o delay.o findbit.o
|
/Linux-v4.19/tools/testing/selftests/kvm/lib/ |
D | assert.c | 42 n = backtrace(stack, n); in test_dump_stack()
|
/Linux-v4.19/arch/arm/oprofile/ |
D | common.c | 124 ops->backtrace = arm_backtrace; in oprofile_arch_init()
|
/Linux-v4.19/Documentation/ia64/ |
D | mca.txt | 76 getting a valid backtrace of the _original_ task. 140 * i386 backtrace is not very sensitive to whether a process is running 153 MCA/INIT never tries to backtrace user space. Which means that the OS 162 How do we get a backtrace on the tasks that were running when MCA/INIT 172 sleeping. To get a backtrace, just start with thread.ksp for the
|
/Linux-v4.19/arch/arm/lib/ |
D | Makefile | 8 lib-y := backtrace.o changebit.o csumipv6.o csumpartial.o \
|