Searched defs:notes (Results 1 - 10 of 10) sorted by relevance

/external/linux-tools-perf/
H A Dbuiltin-annotate.c74 struct annotation *notes = symbol__annotation(he->ms.sym); local
75 if (notes->src == NULL &&
124 struct annotation *notes; local
129 notes = symbol__annotation(he->ms.sym);
130 if (notes->src == NULL) {
162 free(notes->src);
163 notes->src = NULL;
H A Dbuiltin-report.c91 struct annotation *notes = symbol__annotation(he->ms.sym); local
96 if (notes->src == NULL &&
H A Dbuiltin-top.c160 struct annotation *notes; local
180 notes = symbol__annotation(sym);
181 if (notes->src != NULL) {
182 pthread_mutex_lock(&notes->lock);
186 pthread_mutex_lock(&notes->lock);
189 pthread_mutex_unlock(&notes->lock);
208 pthread_mutex_unlock(&notes->lock);
220 struct annotation *notes; local
227 notes = symbol__annotation(sym);
229 if (pthread_mutex_trylock(&notes
240 struct annotation *notes; local
[all...]
/external/linux-tools-perf/util/
H A Dannotate.h71 static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx) argument
73 return (((void *)&notes->src->histograms) +
74 (notes->src->sizeof_sym_hist * idx));
H A Dannotate.c5 * copyright notes.
21 struct annotation *notes = symbol__annotation(sym); local
22 pthread_mutex_init(&notes->lock, NULL);
28 struct annotation *notes = symbol__annotation(sym); local
32 notes->src = zalloc(sizeof(*notes->src) + nevents * sizeof_sym_hist);
33 if (notes->src == NULL)
35 notes->src->sizeof_sym_hist = sizeof_sym_hist;
36 notes->src->nr_histograms = nevents;
37 INIT_LIST_HEAD(&notes
43 struct annotation *notes = symbol__annotation(sym); local
56 struct annotation *notes; local
125 struct annotation *notes = symbol__annotation(sym); local
200 struct annotation *notes = symbol__annotation(sym); local
390 struct annotation *notes = symbol__annotation(sym); local
410 struct annotation *notes = symbol__annotation(sym); local
494 struct annotation *notes = symbol__annotation(sym); local
511 struct annotation *notes = symbol__annotation(sym); local
571 struct annotation *notes = symbol__annotation(sym); local
579 struct annotation *notes = symbol__annotation(sym); local
[all...]
/external/linux-tools-perf/util/ui/browsers/
H A Dtop.c5 * copyright notes.
122 struct annotation *notes = symbol__annotation(sym); local
125 if (notes->src != NULL)
128 pthread_mutex_lock(&notes->lock);
135 pthread_mutex_unlock(&notes->lock);
141 pthread_mutex_unlock(&notes->lock);
H A Dannotate.c71 struct annotation *notes = symbol__annotation(sym); local
72 struct source_line *src_line = notes->src->lines;
73 struct sym_hist *h = annotation__histogram(notes, evidx);
77 next = objdump__get_next_ip_line(&notes->src->source, self);
145 struct annotation *notes = symbol__annotation(sym); local
150 pthread_mutex_lock(&notes->lock);
152 list_for_each_entry(pos, &notes->src->source, node) {
161 pthread_mutex_unlock(&notes->lock);
258 struct annotation *notes; local
282 notes
[all...]
/external/elfutils/libdwfl/
H A Dcore-file.c145 GElf_Phdr *notes)
158 if (notes != NULL)
159 notes->p_type = PT_NULL;
177 if (notes != NULL)
179 *notes = *phdr;
180 notes = NULL;
427 Elf_Data *notes = elf_getdata_rawchunk (elf, local
431 if (likely (notes != NULL))
437 while ((pos = gelf_getnote (notes, pos, &nhdr,
441 && !memcmp (notes
144 dwfl_report_core_segments(Dwfl *dwfl, Elf *elf, const GElf_Ehdr *ehdr, GElf_Phdr *notes) argument
[all...]
H A Dlinux-kernel-modules.c73 #define KNOTESFILE "/sys/kernel/notes"
74 #define MODNOTESFMT "/sys/module/%s/notes"
371 intuit_kernel_bounds (Dwarf_Addr *start, Dwarf_Addr *end, Dwarf_Addr *notes) argument
379 *notes = 0;
400 if (*notes == 0)
405 *notes = last;
568 Dwarf_Addr notes; local
571 asm ("" : "=m" (notes));
572 int result = intuit_kernel_bounds (&start, &end, &notes);
576 return unlikely (mod == NULL) ? -1 : check_kernel_notes (mod, notes);
[all...]
H A Ddwfl_segment_report_module.c293 void *notes; local
295 notes = data;
298 notes = malloc (filesz);
299 if (unlikely (notes == NULL))
304 xlateto.d_buf = notes;
311 const GElf_Nhdr *nh = notes;
312 while ((const void *) nh < (const void *) notes + filesz)
316 if (unlikely ((size_t) ((const void *) notes + filesz
325 build_id_vaddr = note_desc - (const void *) notes + vaddr;
337 if (notes !
[all...]

Completed in 153 milliseconds