/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
D | annotate.c | 425 struct annotation *notes = symbol__annotation(sym); in symbol__annotate_init() local 426 pthread_mutex_init(¬es->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(¬es->src->source); in symbol__alloc_hist() 458 struct annotation *notes = symbol__annotation(sym); in symbol__annotate_zero_histograms() local [all …]
|
D | annotate.h | 73 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 *)¬es->src->histograms) + in annotation__histogram() 126 (notes->src->sizeof_sym_hist * idx)); in annotation__histogram()
|
/external/smack/src/org/jivesoftware/smackx/workgroup/ext/notes/ |
D | ChatNotes.java | 20 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/ |
D | owners_data_source_test.py | 75 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([
|
D | owners_data_source.py | 29 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/ |
D | core-file.c | 144 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 …]
|
D | dwfl_segment_report_module.c | 298 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 …]
|
D | linux-kernel-modules.c | 451 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, ¬es); 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/ |
D | annotate.c | 342 struct annotation *notes = symbol__annotation(sym); in annotate_browser__calc_percent() local 348 pthread_mutex_lock(¬es->lock); in annotate_browser__calc_percent() 350 list_for_each_entry(pos, ¬es->src->source, node) { in annotate_browser__calc_percent() 361 next = disasm__get_next_ip_line(¬es->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(¬es->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(¬es->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/ |
D | builtin-annotate.c | 72 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()
|
D | builtin-top.c | 93 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(¬es->lock); in perf_top__parse_source() 120 pthread_mutex_lock(¬es->lock); in perf_top__parse_source() 123 pthread_mutex_unlock(¬es->lock); in perf_top__parse_source() 136 pthread_mutex_unlock(¬es->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(¬es->lock)) in perf_top__record_precise_ip() [all …]
|
D | builtin-report.c | 124 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/ |
D | AdHocCommandData.java | 52 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/ |
D | annotate.c | 93 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, ¬es->src->source, node) { in perf_gtk__annotate_symbol() 149 list_for_each_entry_safe(pos, n, ¬es->src->source, node) { in perf_gtk__annotate_symbol()
|
/external/chromium_org/tools/grit/grit/testdata/ |
D | README.txt | 55 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/ |
D | Makefile.am | 32 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/ |
D | Darwin-notes.txt | 2 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/ |
D | build-fail-notes.m | 25 // 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/ |
D | dir-listing-vms-4.expected | 56 notes$notebook.note
|
/external/chromium_org/chromecast/android/src/ |
D | dummy | 2 See the notes above that target's 'java_in_dir' variable in chromecast.gyp.
|
/external/llvm/test/Assembler/ |
D | 2008-09-02-FunctionNotes2.ll | 1 ; Test function notes
|
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/ |
D | AgentSession.java | 30 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/ |
D | RELNOTES-3.2 | 2 Mesa 3.2 release notes
|
/external/chromium_org/third_party/mesa/src/docs/ |
D | RELNOTES-3.2 | 2 Mesa 3.2 release notes
|
/external/compiler-rt/android/ |
D | README.LLVM | 1 LLVM notes
|