Home
last modified time | relevance | path

Searched refs:notes (Results 1 – 25 of 129) sorted by relevance

123456

/linux/tools/perf/ui/browsers/
A Dannotate.c59 if (nr == notes->max_jump_sources) in ui_browser__jumps_percent_color()
232 if (notes->options->jump_arrows) in annotate_browser__refresh()
322 pthread_mutex_lock(&notes->lock); in annotate_browser__calc_percent()
468 struct annotation *notes; in annotate_browser__callq() local
477 pthread_mutex_lock(&notes->lock); in annotate_browser__callq()
815 notes->options->show_linenr = !notes->options->show_linenr; in annotate_browser__run()
828 notes->options->use_offset = !notes->options->use_offset; in annotate_browser__run()
836 notes->options->jump_arrows = !notes->options->jump_arrows; in annotate_browser__run()
839 notes->options->show_nr_jumps = !notes->options->show_nr_jumps; in annotate_browser__run()
866 notes->nr_asm_entries); in annotate_browser__run()
[all …]
/linux/tools/perf/util/
A Dannotate.c826 notes->src->nr_histograms * notes->src->sizeof_sym_hist); in symbol__annotate_zero_histograms()
1080 if (!notes->src || !notes->src->cycles_hist) in annotation__compute_ipc()
1083 notes->total_insn = annotation__count_insn(notes, 0, size - 1); in annotation__compute_ipc()
2740 notes->widths.addr = notes->widths.target = in annotation__init_column_widths()
2743 notes->widths.jumps = width_jumps(notes->max_jump_sources); in annotation__init_column_widths()
2744 notes->widths.max_ins_name = annotation__max_ins_name(notes); in annotation__init_column_widths()
2750 notes->widths.target = notes->widths.min_addr; in annotation__update_column_widths()
2752 notes->widths.target = notes->widths.max_addr; in annotation__update_column_widths()
2754 notes->widths.addr = notes->widths.target; in annotation__update_column_widths()
2757 notes->widths.addr += notes->widths.jumps + 1; in annotation__update_column_widths()
[all …]
A Dannotate.h221 int __annotation__scnprintf_samples_period(struct annotation *notes,
302 void annotation__init(struct annotation *notes);
303 void annotation__exit(struct annotation *notes);
305 static inline int annotation__cycles_width(struct annotation *notes) in annotation__cycles_width() argument
307 if (notes->have_cycles && notes->options->show_minmax_cycle) in annotation__cycles_width()
313 static inline int annotation__pcnt_width(struct annotation *notes) in annotation__pcnt_width() argument
315 return (symbol_conf.show_total_period ? 12 : 7) * notes->nr_events; in annotation__pcnt_width()
320 return notes->options->hide_src_code && al->offset == -1; in annotation_line__filter()
323 void annotation__set_offsets(struct annotation *notes, s64 size);
326 void annotation__update_column_widths(struct annotation *notes);
[all …]
A Dblock-info.c119 struct annotation *notes; in block_info__process_sym() local
131 notes = symbol__annotation(he->ms.sym); in block_info__process_sym()
132 if (!notes || !notes->src || !notes->src->cycles_hist) in block_info__process_sym()
134 ch = notes->src->cycles_hist; in block_info__process_sym()
/linux/fs/proc/
A Dkcore.c299 struct elf_note *note = (struct elf_note *)&notes[*i]; in append_kcore_note()
305 memcpy(&notes[*i], name, note->n_namesz); in append_kcore_note()
307 memcpy(&notes[*i], desc, descsz); in append_kcore_note()
422 char *notes; in read_kcore() local
428 notes = kzalloc(notes_len, GFP_KERNEL); in read_kcore()
429 if (!notes) { in read_kcore()
434 append_kcore_note(notes, &i, CORE_STR, NT_PRSTATUS, &prstatus, in read_kcore()
436 append_kcore_note(notes, &i, CORE_STR, NT_PRPSINFO, &prpsinfo, in read_kcore()
447 append_kcore_note(notes, &i, VMCOREINFO_NOTE_NAME, 0, in read_kcore()
453 kfree(notes); in read_kcore()
[all …]
/linux/Documentation/ABI/stable/
A Dsysfs-kernel-notes1 What: /sys/kernel/notes
4 Description: The /sys/kernel/notes file contains the binary representation
5 of the running vmlinux's .notes section.
/linux/fs/
A Dbinfmt_elf.c1711 struct memelfnote notes[]; member
1763 *total += notesize(&t->notes[0]); in fill_thread_core_info()
1928 if (t->notes[i].data && in write_note_info()
1946 WARN_ON(t->notes[0].data && t->notes[0].data != &t->prstatus); in free_note_info()
1948 kfree(t->notes[i].data); in free_note_info()
1964 struct memelfnote notes[3]; member
1985 sz += notesize(&t->notes[0]); in elf_dump_thread_status()
1992 sz += notesize(&t->notes[1]); in elf_dump_thread_status()
1998 struct memelfnote *notes; member
2016 if (!info->notes) in elf_note_info_init()
[all …]
A Dbinfmt_elf_fdpic.c1373 struct memelfnote notes[2]; member
1398 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, sizeof(t->prstatus), in elf_dump_thread_status()
1401 *sz += notesize(&t->notes[0]); in elf_dump_thread_status()
1416 fill_note(&t->notes[1], "CORE", NT_PRFPREG, sizeof(t->fpu), in elf_dump_thread_status()
1419 *sz += notesize(&t->notes[1]); in elf_dump_thread_status()
1612 if (!writenote(thread_list->notes, cprm)) in elf_fdpic_core_dump()
1619 if (!writenote(thread_list->notes + i, cprm)) in elf_fdpic_core_dump()
1625 if (!writenote(&tmp->notes[i], cprm)) in elf_fdpic_core_dump()
/linux/Documentation/userspace-api/ioctl/
A Dcdrom.rst164 notes:
195 notes:
252 notes:
279 notes:
304 notes:
331 notes:
358 notes:
436 notes:
469 notes:
487 notes:
[all …]
A Dhdio.rst88 notes:
131 notes:
161 notes:
231 notes:
445 notes:
452 notes for the default value of SELECT.
515 notes:
/linux/Documentation/devicetree/
A Dindex.rst22 dynamic-resolution-notes
23 overlay-notes
/linux/tools/perf/
A Dbuiltin-annotate.c87 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()
316 struct annotation *notes; in hists__find_annotations() local
325 notes = symbol__annotation(he->ms.sym); in hists__find_annotations()
326 if (notes->src == NULL) { in hists__find_annotations()
A Dbuiltin-top.c115 struct annotation *notes; in perf_top__parse_source() local
138 notes = symbol__annotation(sym); in perf_top__parse_source()
139 pthread_mutex_lock(&notes->lock); in perf_top__parse_source()
142 pthread_mutex_unlock(&notes->lock); in perf_top__parse_source()
158 pthread_mutex_unlock(&notes->lock); in perf_top__parse_source()
200 struct annotation *notes; in perf_top__record_precise_ip() local
209 notes = symbol__annotation(sym); in perf_top__record_precise_ip()
216 pthread_mutex_unlock(&notes->lock); in perf_top__record_precise_ip()
241 struct annotation *notes; in perf_top__show_details() local
253 pthread_mutex_lock(&notes->lock); in perf_top__show_details()
[all …]
/linux/tools/perf/ui/gtk/
A Dannotate.c100 struct annotation *notes; in perf_gtk__annotate_symbol() local
108 notes = symbol__annotation(sym); in perf_gtk__annotate_symbol()
127 list_for_each_entry(pos, &notes->src->source, al.node) { in perf_gtk__annotate_symbol()
156 list_for_each_entry_safe(pos, n, &notes->src->source, al.node) { in perf_gtk__annotate_symbol()
/linux/arch/arm/mach-pxa/
A Dsleep.S65 @ Intel PXA270 Specification Update notes problems sleeping
102 @ Intel PXA255 Specification Update notes problems
158 @ Intel PXA270 Specification Update notes problems performing
/linux/Documentation/driver-api/80211/
A Dmac80211-advanced.rst72 Insert notes about VLAN interfaces with hw crypto here or in the hw
99 Insert notes about having multiple virtual interfaces with different MAC
101 notes about supporting hw crypto with it.
/linux/Documentation/devicetree/bindings/iio/cdc/
A Dadi,ad7746.yaml42 application notes for more details
43 https://www.analog.com/media/en/technical-documentation/application-notes/AN-1585.pdf
/linux/Documentation/sound/hd-audio/
A Dindex.rst7 notes
/linux/Documentation/arm/nwfpe/
A Dindex.rst12 notes
/linux/kernel/
A Dwatch_queue.c100 page = wqueue->notes[note / WATCH_QUEUE_NOTES_PER_PAGE]; in post_one_notification()
227 if (wqueue->notes) in watch_queue_set_size()
268 wqueue->notes = pages; in watch_queue_set_size()
373 __free_page(wqueue->notes[i]); in __put_watch_queue()
/linux/Documentation/process/
A Dmaintainer-handbooks.rst5 Subsystem and maintainer tree specific development process notes
/linux/arch/m68k/hp300/
A DREADME.hp3001 HP300 notes
/linux/Documentation/vm/
A Dindex.rst6 subsystem internals with different level of details ranging from notes and
/linux/Documentation/driver-api/dmaengine/
A Dindex.rst43 This book adds some notes about PXA DMA
/linux/Documentation/arm/
A Dindex.rst76 vfp/release-notes

Completed in 48 milliseconds

123456