/Linux-v5.4/tools/perf/ui/browsers/ |
D | annotate.c | 48 struct annotation *notes = browser__annotation(browser); in disasm_line__filter() local 50 return annotation_line__filter(al, notes); in disasm_line__filter() 55 struct annotation *notes = browser__annotation(browser); in ui_browser__jumps_percent_color() local 59 if (nr == notes->max_jump_sources) in ui_browser__jumps_percent_color() 99 struct annotation *notes = browser__annotation(browser); in annotate_browser__write() local 105 .change_color = (!notes->options->hide_src_code && in annotate_browser__write() 122 annotation_line__write(al, notes, &ops, ab->opts); in annotate_browser__write() 155 struct annotation *notes = symbol__annotation(sym); in annotate_browser__draw_current_jump() local 156 u8 pcnt_width = annotation__pcnt_width(notes); in annotate_browser__draw_current_jump() 186 target = notes->offsets[cursor->ops.target.offset]; in annotate_browser__draw_current_jump() [all …]
|
/Linux-v5.4/tools/perf/util/ |
D | annotate.c | 793 struct annotation *notes = symbol__annotation(sym); in symbol__alloc_hist_cycles() local 796 notes->src->cycles_hist = calloc(size, sizeof(struct cyc_hist)); in symbol__alloc_hist_cycles() 797 if (notes->src->cycles_hist == NULL) in symbol__alloc_hist_cycles() 804 struct annotation *notes = symbol__annotation(sym); in symbol__annotate_zero_histograms() local 806 pthread_mutex_lock(¬es->lock); in symbol__annotate_zero_histograms() 807 if (notes->src != NULL) { in symbol__annotate_zero_histograms() 808 memset(notes->src->histograms, 0, in symbol__annotate_zero_histograms() 809 notes->src->nr_histograms * notes->src->sizeof_sym_hist); in symbol__annotate_zero_histograms() 810 if (notes->src->cycles_hist) in symbol__annotate_zero_histograms() 811 memset(notes->src->cycles_hist, 0, in symbol__annotate_zero_histograms() [all …]
|
D | annotate.h | 213 void annotation_line__write(struct annotation_line *al, struct annotation *notes, 217 int __annotation__scnprintf_samples_period(struct annotation *notes, 298 static inline int annotation__cycles_width(struct annotation *notes) in annotation__cycles_width() argument 300 if (notes->have_cycles && notes->options->show_minmax_cycle) in annotation__cycles_width() 303 return notes->have_cycles ? ANNOTATION__IPC_WIDTH + ANNOTATION__CYCLES_WIDTH : 0; in annotation__cycles_width() 306 static inline int annotation__pcnt_width(struct annotation *notes) in annotation__pcnt_width() argument 308 return (notes->options->show_total_period ? 12 : 7) * notes->nr_events; in annotation__pcnt_width() 311 static inline bool annotation_line__filter(struct annotation_line *al, struct annotation *notes) in annotation_line__filter() argument 313 return notes->options->hide_src_code && al->offset == -1; in annotation_line__filter() 316 void annotation__set_offsets(struct annotation *notes, s64 size); [all …]
|
/Linux-v5.4/fs/proc/ |
D | kcore.c | 297 static void append_kcore_note(char *notes, size_t *i, const char *name, in append_kcore_note() argument 301 struct elf_note *note = (struct elf_note *)¬es[*i]; in append_kcore_note() 307 memcpy(¬es[*i], name, note->n_namesz); in append_kcore_note() 309 memcpy(¬es[*i], desc, descsz); in append_kcore_note() 421 char *notes; in read_kcore() local 427 notes = kzalloc(notes_len, GFP_KERNEL); in read_kcore() 428 if (!notes) { in read_kcore() 433 append_kcore_note(notes, &i, CORE_STR, NT_PRSTATUS, &prstatus, in read_kcore() 435 append_kcore_note(notes, &i, CORE_STR, NT_PRPSINFO, &prpsinfo, in read_kcore() 437 append_kcore_note(notes, &i, CORE_STR, NT_TASKSTRUCT, current, in read_kcore() [all …]
|
/Linux-v5.4/fs/ |
D | binfmt_elf.c | 1665 struct memelfnote notes[0]; member 1716 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, in fill_thread_core_info() 1718 *total += notesize(&t->notes[0]); in fill_thread_core_info() 1743 fill_note(&t->notes[i], "LINUX", in fill_thread_core_info() 1749 fill_note(&t->notes[i], "CORE", in fill_thread_core_info() 1752 *total += notesize(&t->notes[i]); in fill_thread_core_info() 1811 notes[info->thread_notes]), in fill_note_info() 1873 if (!writenote(&t->notes[0], cprm)) in write_note_info() 1887 if (t->notes[i].data && in write_note_info() 1888 !writenote(&t->notes[i], cprm)) in write_note_info() [all …]
|
D | binfmt_elf_fdpic.c | 1431 struct memelfnote notes[3]; member 1450 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, sizeof(t->prstatus), in elf_dump_thread_status() 1453 sz += notesize(&t->notes[0]); in elf_dump_thread_status() 1457 fill_note(&t->notes[1], "CORE", NT_PRFPREG, sizeof(t->fpu), in elf_dump_thread_status() 1460 sz += notesize(&t->notes[1]); in elf_dump_thread_status() 1465 fill_note(&t->notes[2], "LINUX", ELF_CORE_XFPREG_TYPE, in elf_dump_thread_status() 1468 sz += notesize(&t->notes[2]); in elf_dump_thread_status() 1559 struct memelfnote *notes = NULL; in elf_fdpic_core_dump() local 1599 notes = kmalloc_array(NUM_NOTES, sizeof(struct memelfnote), in elf_fdpic_core_dump() 1601 if (!notes) in elf_fdpic_core_dump() [all …]
|
/Linux-v5.4/tools/perf/ |
D | builtin-annotate.c | 87 struct annotation *notes = sym ? symbol__annotation(sym) : NULL; in process_basic_block() local 114 if (notes) in process_basic_block() 115 notes->max_coverage = max(notes->max_coverage, entry->coverage); in process_basic_block() 318 struct annotation *notes; in hists__find_annotations() local 327 notes = symbol__annotation(he->ms.sym); in hists__find_annotations() 328 if (notes->src == NULL) { in hists__find_annotations() 384 zfree(¬es->src->cycles_hist); in hists__find_annotations() 385 zfree(¬es->src); in hists__find_annotations()
|
D | builtin-top.c | 111 struct annotation *notes; in perf_top__parse_source() local 134 notes = symbol__annotation(sym); in perf_top__parse_source() 135 pthread_mutex_lock(¬es->lock); in perf_top__parse_source() 138 pthread_mutex_unlock(¬es->lock); in perf_top__parse_source() 154 pthread_mutex_unlock(¬es->lock); in perf_top__parse_source() 196 struct annotation *notes; in perf_top__record_precise_ip() local 205 notes = symbol__annotation(sym); in perf_top__record_precise_ip() 207 if (pthread_mutex_trylock(¬es->lock)) in perf_top__record_precise_ip() 212 pthread_mutex_unlock(¬es->lock); in perf_top__record_precise_ip() 237 struct annotation *notes; in perf_top__show_details() local [all …]
|
/Linux-v5.4/Documentation/ioctl/ |
D | cdrom.rst | 161 notes: 192 notes: 249 notes: 276 notes: 301 notes: 328 notes: 355 notes: 433 notes: 466 notes: 484 notes: [all …]
|
D | hdio.rst | 121 notes: 240 notes: 301 notes: 331 notes: 385 notes: 456 notes: 491 notes: 544 notes: 662 notes: 737 notes: [all …]
|
/Linux-v5.4/tools/perf/ui/gtk/ |
D | annotate.c | 99 struct annotation *notes; in perf_gtk__annotate_symbol() local 107 notes = symbol__annotation(sym); in perf_gtk__annotate_symbol() 126 list_for_each_entry(pos, ¬es->src->source, al.node) { in perf_gtk__annotate_symbol() 155 list_for_each_entry_safe(pos, n, ¬es->src->source, al.node) { in perf_gtk__annotate_symbol()
|
/Linux-v5.4/arch/arm/mach-pxa/ |
D | sleep.S | 65 @ Intel PXA270 Specification Update notes problems sleeping 102 @ Intel PXA255 Specification Update notes problems 158 @ Intel PXA270 Specification Update notes problems performing
|
/Linux-v5.4/Documentation/sound/hd-audio/ |
D | index.rst | 7 notes
|
/Linux-v5.4/Documentation/arm/nwfpe/ |
D | index.rst | 12 notes
|
/Linux-v5.4/Documentation/driver-api/serial/ |
D | cyclades_z.rst | 2 Cyclades-Z notes
|
/Linux-v5.4/Documentation/driver-api/80211/ |
D | mac80211-advanced.rst | 92 Insert notes about VLAN interfaces with hw crypto here or in the hw 132 Insert notes about having multiple virtual interfaces with different MAC 134 notes about supporting hw crypto with it.
|
/Linux-v5.4/arch/m68k/hp300/ |
D | README.hp300 | 1 HP300 notes
|
/Linux-v5.4/arch/xtensa/boot/ |
D | Makefile | 36 OBJCOPYFLAGS = --strip-all -R .comment -R .notes -O binary
|
/Linux-v5.4/Documentation/arm/ |
D | index.rst | 72 vfp/release-notes
|
/Linux-v5.4/Documentation/driver-api/dmaengine/ |
D | index.rst | 43 This book adds some notes about PXA DMA
|
/Linux-v5.4/Documentation/vm/ |
D | index.rst | 25 details ranging from notes and mailing list responses to elaborate
|
/Linux-v5.4/Documentation/media/v4l-drivers/ |
D | cx18.rst | 10 Some notes regarding the cx18 driver for the Conexant CX23418 MPEG
|
/Linux-v5.4/arch/powerpc/kernel/ |
D | vmlinux.lds.S | 22 notes PT_NOTE FLAGS(0); 180 NOTES :kernel :notes
|
/Linux-v5.4/Documentation/i2c/busses/ |
D | scx200_acb.rst | 25 Device-specific notes
|
/Linux-v5.4/Documentation/devicetree/bindings/mmc/ |
D | exynos-dw-mshc.txt | 32 data rate mode operation. Refer notes below for the order of the cells and the 37 data rate mode operation. Refer notes below for the order of the cells and the
|