/Linux-v4.19/tools/perf/ui/browsers/ |
D | annotate.c | 46 struct annotation *notes = browser__annotation(browser); in disasm_line__filter() local 48 return annotation_line__filter(al, notes); in disasm_line__filter() 53 struct annotation *notes = browser__annotation(browser); in ui_browser__jumps_percent_color() local 57 if (nr == notes->max_jump_sources) in ui_browser__jumps_percent_color() 97 struct annotation *notes = browser__annotation(browser); in annotate_browser__write() local 102 .change_color = (!notes->options->hide_src_code && in annotate_browser__write() 119 annotation_line__write(al, notes, &ops, ab->opts); in annotate_browser__write() 152 struct annotation *notes = symbol__annotation(sym); in annotate_browser__draw_current_jump() local 153 u8 pcnt_width = annotation__pcnt_width(notes); in annotate_browser__draw_current_jump() 183 target = notes->offsets[cursor->ops.target.offset]; in annotate_browser__draw_current_jump() [all …]
|
/Linux-v4.19/tools/perf/util/ |
D | annotate.c | 761 struct annotation *notes = symbol__annotation(sym); in symbol__alloc_hist_cycles() local 764 notes->src->cycles_hist = calloc(size, sizeof(struct cyc_hist)); in symbol__alloc_hist_cycles() 765 if (notes->src->cycles_hist == NULL) in symbol__alloc_hist_cycles() 772 struct annotation *notes = symbol__annotation(sym); in symbol__annotate_zero_histograms() local 774 pthread_mutex_lock(¬es->lock); in symbol__annotate_zero_histograms() 775 if (notes->src != NULL) { in symbol__annotate_zero_histograms() 776 memset(notes->src->histograms, 0, in symbol__annotate_zero_histograms() 777 notes->src->nr_histograms * notes->src->sizeof_sym_hist); in symbol__annotate_zero_histograms() 778 if (notes->src->cycles_hist) in symbol__annotate_zero_histograms() 779 memset(notes->src->cycles_hist, 0, in symbol__annotate_zero_histograms() [all …]
|
D | annotate.h | 204 void annotation_line__write(struct annotation_line *al, struct annotation *notes, 208 int __annotation__scnprintf_samples_period(struct annotation *notes, 284 static inline int annotation__cycles_width(struct annotation *notes) in annotation__cycles_width() argument 286 if (notes->have_cycles && notes->options->show_minmax_cycle) in annotation__cycles_width() 289 return notes->have_cycles ? ANNOTATION__IPC_WIDTH + ANNOTATION__CYCLES_WIDTH : 0; in annotation__cycles_width() 292 static inline int annotation__pcnt_width(struct annotation *notes) in annotation__pcnt_width() argument 294 return (notes->options->show_total_period ? 12 : 7) * notes->nr_events; in annotation__pcnt_width() 297 static inline bool annotation_line__filter(struct annotation_line *al, struct annotation *notes) in annotation_line__filter() argument 299 return notes->options->hide_src_code && al->offset == -1; in annotation_line__filter() 302 void annotation__set_offsets(struct annotation *notes, s64 size); [all …]
|
/Linux-v4.19/Documentation/leds/ |
D | 00-INDEX | 10 - notes on how to use the leds-lm3556 driver. 12 - notes on how to use the leds-lp3944 driver. 14 - notes on how to use the leds-lp5521 driver. 16 - notes on how to use the leds-lp5523 driver. 18 - notes on how to use the leds-lp5562 driver. 22 - notes on how to use the leds-lm3556 driver. 24 - notes on how to use the leds-mlxcpld driver. 30 - notes on how to use the drivers/usb/core/ledtrig-usbport.c trigger. 32 - notes on how to use the uleds driver.
|
/Linux-v4.19/fs/proc/ |
D | kcore.c | 274 static void append_kcore_note(char *notes, size_t *i, const char *name, in append_kcore_note() argument 278 struct elf_note *note = (struct elf_note *)¬es[*i]; in append_kcore_note() 284 memcpy(¬es[*i], name, note->n_namesz); in append_kcore_note() 286 memcpy(¬es[*i], desc, descsz); in append_kcore_note() 398 char *notes; in read_kcore() local 404 notes = kzalloc(notes_len, GFP_KERNEL); in read_kcore() 405 if (!notes) { in read_kcore() 410 append_kcore_note(notes, &i, CORE_STR, NT_PRSTATUS, &prstatus, in read_kcore() 412 append_kcore_note(notes, &i, CORE_STR, NT_PRPSINFO, &prpsinfo, in read_kcore() 414 append_kcore_note(notes, &i, CORE_STR, NT_TASKSTRUCT, current, in read_kcore() [all …]
|
/Linux-v4.19/Documentation/virtual/kvm/ |
D | 00-INDEX | 4 - notes on AMD Secure Encrypted Virtualization feature and SEV firmware 15 - notes on halt-polling 19 - notes on KVM locks. 25 - notes on nested virtualization for Intel x86 processors.
|
/Linux-v4.19/fs/ |
D | binfmt_elf.c | 1688 struct memelfnote notes[0]; member 1739 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, in fill_thread_core_info() 1741 *total += notesize(&t->notes[0]); in fill_thread_core_info() 1766 fill_note(&t->notes[i], "LINUX", in fill_thread_core_info() 1772 fill_note(&t->notes[i], "CORE", in fill_thread_core_info() 1775 *total += notesize(&t->notes[i]); in fill_thread_core_info() 1834 notes[info->thread_notes]), in fill_note_info() 1896 if (!writenote(&t->notes[0], cprm)) in write_note_info() 1910 if (t->notes[i].data && in write_note_info() 1911 !writenote(&t->notes[i], cprm)) in write_note_info() [all …]
|
D | binfmt_elf_fdpic.c | 1435 struct memelfnote notes[3]; member 1454 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, sizeof(t->prstatus), in elf_dump_thread_status() 1457 sz += notesize(&t->notes[0]); in elf_dump_thread_status() 1461 fill_note(&t->notes[1], "CORE", NT_PRFPREG, sizeof(t->fpu), in elf_dump_thread_status() 1464 sz += notesize(&t->notes[1]); in elf_dump_thread_status() 1469 fill_note(&t->notes[2], "LINUX", ELF_CORE_XFPREG_TYPE, in elf_dump_thread_status() 1472 sz += notesize(&t->notes[2]); in elf_dump_thread_status() 1563 struct memelfnote *notes = NULL; in elf_fdpic_core_dump() local 1603 notes = kmalloc_array(NUM_NOTES, sizeof(struct memelfnote), in elf_fdpic_core_dump() 1605 if (!notes) in elf_fdpic_core_dump() [all …]
|
/Linux-v4.19/tools/perf/ |
D | builtin-annotate.c | 82 struct annotation *notes = sym ? symbol__annotation(sym) : NULL; in process_basic_block() local 109 if (notes) in process_basic_block() 110 notes->max_coverage = max(notes->max_coverage, entry->coverage); in process_basic_block() 314 struct annotation *notes; in hists__find_annotations() local 323 notes = symbol__annotation(he->ms.sym); in hists__find_annotations() 324 if (notes->src == NULL) { in hists__find_annotations() 380 zfree(¬es->src->cycles_hist); in hists__find_annotations() 381 zfree(¬es->src); in hists__find_annotations()
|
D | builtin-top.c | 104 struct annotation *notes; in perf_top__parse_source() local 125 notes = symbol__annotation(sym); in perf_top__parse_source() 126 pthread_mutex_lock(¬es->lock); in perf_top__parse_source() 129 pthread_mutex_unlock(¬es->lock); in perf_top__parse_source() 145 pthread_mutex_unlock(¬es->lock); in perf_top__parse_source() 187 struct annotation *notes; in perf_top__record_precise_ip() local 196 notes = symbol__annotation(sym); in perf_top__record_precise_ip() 198 if (pthread_mutex_trylock(¬es->lock)) in perf_top__record_precise_ip() 203 pthread_mutex_unlock(¬es->lock); in perf_top__record_precise_ip() 228 struct annotation *notes; in perf_top__show_details() local [all …]
|
/Linux-v4.19/Documentation/timers/ |
D | 00-INDEX | 4 - High resolution timers and dynamic ticks design notes 12 - Clock sources, clock events, sched_clock() and delay timer notes
|
/Linux-v4.19/Documentation/ioctl/ |
D | cdrom.txt | 140 notes: 164 notes: 207 notes: 227 notes: 245 notes: 265 notes: 284 notes: 342 notes: 370 notes: 386 notes: [all …]
|
D | hdio.txt | 110 notes: 202 notes: 253 notes: 276 notes: 315 notes: 362 notes: 389 notes: 427 notes: 514 notes: 579 notes: [all …]
|
/Linux-v4.19/tools/perf/ui/gtk/ |
D | annotate.c | 95 struct annotation *notes; in perf_gtk__annotate_symbol() local 103 notes = symbol__annotation(sym); in perf_gtk__annotate_symbol() 122 list_for_each_entry(pos, ¬es->src->source, al.node) { in perf_gtk__annotate_symbol() 151 list_for_each_entry_safe(pos, n, ¬es->src->source, al.node) { in perf_gtk__annotate_symbol()
|
/Linux-v4.19/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-v4.19/Documentation/sound/hd-audio/ |
D | index.rst | 7 notes
|
/Linux-v4.19/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-v4.19/arch/m68k/hp300/ |
D | README.hp300 | 1 HP300 notes
|
/Linux-v4.19/Documentation/driver-api/dmaengine/ |
D | index.rst | 43 This book adds some notes about PXA DMA
|
/Linux-v4.19/Documentation/blockdev/ |
D | 00-INDEX | 10 - notes and driver options for the floppy disk driver.
|
/Linux-v4.19/Documentation/vm/ |
D | index.rst | 23 details ranging from notes and mailing list responses to elaborate
|
/Linux-v4.19/arch/powerpc/kernel/ |
D | vmlinux.lds.S | 22 notes PT_NOTE FLAGS(0); 169 NOTES :kernel :notes
|
/Linux-v4.19/Documentation/media/v4l-drivers/ |
D | cx18.rst | 8 Some notes regarding the cx18 driver for the Conexant CX23418 MPEG
|
/Linux-v4.19/Documentation/i2c/busses/ |
D | scx200_acb | 23 Device-specific notes
|
/Linux-v4.19/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
|