Home
last modified time | relevance | path

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

1234567891011

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
Dannotate.c425 struct annotation *notes = symbol__annotation(sym); in symbol__annotate_init() local
426 pthread_mutex_init(&notes->lock, NULL); in symbol__annotate_init()
432 struct annotation *notes = symbol__annotation(sym); in symbol__alloc_hist() local
443 if (sizeof_sym_hist > (SIZE_MAX - sizeof(*notes->src)) in symbol__alloc_hist()
447 notes->src = zalloc(sizeof(*notes->src) + symbol_conf.nr_events * sizeof_sym_hist); in symbol__alloc_hist()
448 if (notes->src == NULL) in symbol__alloc_hist()
450 notes->src->sizeof_sym_hist = sizeof_sym_hist; in symbol__alloc_hist()
451 notes->src->nr_histograms = symbol_conf.nr_events; in symbol__alloc_hist()
452 INIT_LIST_HEAD(&notes->src->source); in symbol__alloc_hist()
458 struct annotation *notes = symbol__annotation(sym); in symbol__annotate_zero_histograms() local
[all …]
Dannotate.h73 double disasm__calc_percent(struct annotation *notes, int evidx, s64 offset,
123 static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx) in annotation__histogram() argument
125 return (((void *)&notes->src->histograms) + in annotation__histogram()
126 (notes->src->sizeof_sym_hist * idx)); in annotation__histogram()
/external/smack/src/org/jivesoftware/smackx/workgroup/ext/notes/
DChatNotes.java20 package org.jivesoftware.smackx.workgroup.ext.notes;
43 private String notes; field in ChatNotes
54 return notes; in getNotes()
57 public void setNotes(String notes) { in setNotes() argument
58 this.notes = notes; in setNotes()
/external/chromium_org/chrome/common/extensions/docs/server2/
Downers_data_source_test.py75 owners, notes = ParseOwnersFile(owners_content, randomize=False)
92 self.assertEqual(notes, '')
103 owners, notes = ParseOwnersFile(owners_content_with_comments,
120 self.assertEqual(notes, '\n'.join([
Downers_data_source.py29 notes = []
34 notes.append(line[len(_COMMENT_START_MARKER):].lstrip())
43 return owners, '\n'.join(notes)
58 owners, notes = ParseOwnersFile(content, self._randomize)
63 'notes': notes,
/external/elfutils/0.153/libdwfl/
Dcore-file.c144 dwfl_report_core_segments (Dwfl *dwfl, Elf *elf, size_t phnum, GElf_Phdr *notes) in dwfl_report_core_segments() argument
151 if (notes != NULL) in dwfl_report_core_segments()
152 notes->p_type = PT_NULL; in dwfl_report_core_segments()
170 if (notes != NULL) in dwfl_report_core_segments()
172 *notes = *phdr; in dwfl_report_core_segments()
173 notes = NULL; in dwfl_report_core_segments()
449 Elf_Data *notes = elf_getdata_rawchunk (elf, in dwfl_core_file_report() local
453 if (likely (notes != NULL)) in dwfl_core_file_report()
459 while ((pos = gelf_getnote (notes, pos, &nhdr, in dwfl_core_file_report()
463 && !memcmp (notes->d_buf + name_pos, "CORE", sizeof "CORE")) in dwfl_core_file_report()
[all …]
Ddwfl_segment_report_module.c298 void *notes; in dwfl_segment_report_module() local
300 notes = data; in dwfl_segment_report_module()
303 notes = malloc (filesz); in dwfl_segment_report_module()
304 if (unlikely (notes == NULL)) in dwfl_segment_report_module()
309 xlateto.d_buf = notes; in dwfl_segment_report_module()
316 const GElf_Nhdr *nh = notes; in dwfl_segment_report_module()
317 while ((const void *) nh < (const void *) notes + filesz) in dwfl_segment_report_module()
321 if (unlikely ((size_t) ((const void *) notes + filesz in dwfl_segment_report_module()
330 build_id_vaddr = note_desc - (const void *) notes + vaddr; in dwfl_segment_report_module()
342 if (notes != data) in dwfl_segment_report_module()
[all …]
Dlinux-kernel-modules.c451 intuit_kernel_bounds (Dwarf_Addr *start, Dwarf_Addr *end, Dwarf_Addr *notes) in INTDEF()
459 *notes = 0; in INTDEF()
488 if (*notes == 0 && !strcmp (p, "__start_notes\n")) in INTDEF()
489 *notes = *end; in INTDEF()
647 Dwarf_Addr notes; in dwfl_linux_kernel_report_kernel() local
650 asm ("" : "=m" (notes)); in dwfl_linux_kernel_report_kernel()
651 int result = intuit_kernel_bounds (&start, &end, &notes); in dwfl_linux_kernel_report_kernel()
655 return unlikely (mod == NULL) ? -1 : check_kernel_notes (mod, notes); in dwfl_linux_kernel_report_kernel()
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
Dannotate.c342 struct annotation *notes = symbol__annotation(sym); in annotate_browser__calc_percent() local
348 pthread_mutex_lock(&notes->lock); in annotate_browser__calc_percent()
350 list_for_each_entry(pos, &notes->src->source, node) { in annotate_browser__calc_percent()
361 next = disasm__get_next_ip_line(&notes->src->source, pos); in annotate_browser__calc_percent()
364 bpos->percent[i] = disasm__calc_percent(notes, in annotate_browser__calc_percent()
381 pthread_mutex_unlock(&notes->lock); in annotate_browser__calc_percent()
446 struct annotation *notes; in annotate_browser__callq() local
461 notes = symbol__annotation(target); in annotate_browser__callq()
462 pthread_mutex_lock(&notes->lock); in annotate_browser__callq()
464 if (notes->src == NULL && symbol__alloc_hist(target) < 0) { in annotate_browser__callq()
[all …]
/external/linux-tools-perf/perf-3.12.0/tools/perf/
Dbuiltin-annotate.c72 struct annotation *notes = symbol__annotation(he->ms.sym); in perf_evsel__add_sample() local
73 if (notes->src == NULL && symbol__alloc_hist(he->ms.sym) < 0) in perf_evsel__add_sample()
128 struct annotation *notes; in hists__find_annotations() local
133 notes = symbol__annotation(he->ms.sym); in hists__find_annotations()
134 if (notes->src == NULL) { in hists__find_annotations()
179 free(notes->src); in hists__find_annotations()
180 notes->src = NULL; in hists__find_annotations()
Dbuiltin-top.c93 struct annotation *notes; in perf_top__parse_source() local
114 notes = symbol__annotation(sym); in perf_top__parse_source()
115 if (notes->src != NULL) { in perf_top__parse_source()
116 pthread_mutex_lock(&notes->lock); in perf_top__parse_source()
120 pthread_mutex_lock(&notes->lock); in perf_top__parse_source()
123 pthread_mutex_unlock(&notes->lock); in perf_top__parse_source()
136 pthread_mutex_unlock(&notes->lock); in perf_top__parse_source()
177 struct annotation *notes; in perf_top__record_precise_ip() local
187 notes = symbol__annotation(sym); in perf_top__record_precise_ip()
189 if (pthread_mutex_trylock(&notes->lock)) in perf_top__record_precise_ip()
[all …]
Dbuiltin-report.c124 struct annotation *notes = symbol__annotation(he->ms.sym); in perf_report__add_mem_hist_entry() local
128 if (notes->src == NULL && symbol__alloc_hist(he->ms.sym) < 0) in perf_report__add_mem_hist_entry()
137 struct annotation *notes; in perf_report__add_mem_hist_entry() local
141 notes = symbol__annotation(mx->daddr.sym); in perf_report__add_mem_hist_entry()
142 if (notes->src == NULL && symbol__alloc_hist(mx->daddr.sym) < 0) in perf_report__add_mem_hist_entry()
205 struct annotation *notes; in perf_report__add_branch_hist_entry() local
208 notes = symbol__annotation(bx->from.sym); in perf_report__add_branch_hist_entry()
209 if (!notes->src in perf_report__add_branch_hist_entry()
222 notes = symbol__annotation(bx->to.sym); in perf_report__add_branch_hist_entry()
223 if (!notes->src in perf_report__add_branch_hist_entry()
[all …]
/external/smack/src/org/jivesoftware/smackx/packet/
DAdHocCommandData.java52 private List<AdHocCommandNote> notes = new ArrayList<AdHocCommandNote>(); field in AdHocCommandData
117 for (AdHocCommandNote note : notes) { in getChildElementXML()
177 return notes; in getNotes()
181 this.notes.add(note); in addNote()
185 this.notes.remove(note); in remveNote()
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
Dannotate.c93 struct annotation *notes; in perf_gtk__annotate_symbol() local
101 notes = symbol__annotation(sym); in perf_gtk__annotate_symbol()
120 list_for_each_entry(pos, &notes->src->source, node) { in perf_gtk__annotate_symbol()
149 list_for_each_entry_safe(pos, n, &notes->src->source, node) { in perf_gtk__annotate_symbol()
/external/chromium_org/tools/grit/grit/testdata/
DREADME.txt55 the Notes application directory and a setting to the notes.ini
58 notes.ini file. Installation will complete if the user closes Notes
76 but just do so more slowly or quickly, the GoogleWaitTime notes.ini
86 notes.ini file:
/external/valgrind/main/docs/
DMakefile.am32 internals/avx-notes.txt \
34 internals/Darwin-notes.txt \
35 internals/SPEC-notes.txt \
43 internals/notes.txt \
51 internals/t-chaining-notes.txt \
/external/valgrind/main/docs/internals/
DDarwin-notes.txt2 Valgrind-developer notes, re the MacOSX port
9 is available. See docs/internals/Darwin-notes.txt for the reason
48 Valgrind-developer notes, things removed from the original MacOSX port
61 Valgrind-developer notes, todos re the MacOSX port
134 look at notes in coregrind/Makefile.am re Mach RPC interface
/external/clang/test/Modules/
Dbuild-fail-notes.m25 // CHECK-SDIAG: build-fail-notes.m:4:9: note: while building module 'DependsOnModule' imported from
30 // CHECK-SDIAG: build-fail-notes.m:4:9: note: while building module 'DependsOnModule' imported from
/external/chromium_org/net/data/ftp/
Ddir-listing-vms-4.expected56 notes$notebook.note
/external/chromium_org/chromecast/android/src/
Ddummy2 See the notes above that target's 'java_in_dir' variable in chromecast.gyp.
/external/llvm/test/Assembler/
D2008-09-02-FunctionNotes2.ll1 ; Test function notes
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
DAgentSession.java30 import org.jivesoftware.smackx.workgroup.ext.notes.ChatNotes;
802 ChatNotes notes = new ChatNotes(); in setNote() local
803 notes.setType(IQ.Type.SET); in setNote()
804 notes.setTo(workgroupJID); in setNote()
805 notes.setSessionID(sessionID); in setNote()
806 notes.setNotes(note); in setNote()
807 …PacketCollector collector = connection.createPacketCollector(new PacketIDFilter(notes.getPacketID(… in setNote()
809 connection.sendPacket(notes); in setNote()
/external/mesa3d/docs/
DRELNOTES-3.22 Mesa 3.2 release notes
/external/chromium_org/third_party/mesa/src/docs/
DRELNOTES-3.22 Mesa 3.2 release notes
/external/compiler-rt/android/
DREADME.LLVM1 LLVM notes

1234567891011