Searched refs:notes (Results 1 - 25 of 30) sorted by relevance

12

/external/linux-tools-perf/src/tools/perf/util/
H A Dannotate.c5 * copyright notes.
425 struct annotation *notes = symbol__annotation(sym); local
426 pthread_mutex_init(&notes->lock, NULL);
432 struct annotation *notes = symbol__annotation(sym); local
443 if (sizeof_sym_hist > (SIZE_MAX - sizeof(*notes->src))
447 notes->src = zalloc(sizeof(*notes->src) + symbol_conf.nr_events * sizeof_sym_hist);
448 if (notes->src == NULL)
450 notes->src->sizeof_sym_hist = sizeof_sym_hist;
451 notes
458 struct annotation *notes = symbol__annotation(sym); local
471 struct annotation *notes; local
606 disasm__calc_percent(struct annotation *notes, int evidx, s64 offset, s64 end, const char **path) argument
653 struct annotation *notes = symbol__annotation(sym); local
766 struct annotation *notes = symbol__annotation(sym); local
851 struct annotation *notes = symbol__annotation(sym); local
1064 struct annotation *notes = symbol__annotation(sym); local
1092 struct annotation *notes = symbol__annotation(sym); local
1203 struct annotation *notes = symbol__annotation(sym); local
1221 struct annotation *notes = symbol__annotation(sym); local
1297 struct annotation *notes = symbol__annotation(sym); local
1305 struct annotation *notes = symbol__annotation(sym); local
[all...]
H A 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) argument
125 return (((void *)&notes->src->histograms) +
126 (notes->src->sizeof_sym_hist * idx));
/external/vboot_reference/firmware/lib/include/
H A Dvboot_audio_private.h21 uint32_t checksum; /* crc32 over count & all notes */
22 uint32_t count; /* number of notes */
23 VbDevMusicNote notes[1]; /* gcc allows [0], MSVC doesn't */ member in struct:VbDevMusic
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
H A Ddownload.php42 <p>It is very important to read the following notes in order to run this version
43 of Eclipse. Once you have read the notes you can click on the Download link
/external/google-breakpad/src/common/linux/
H A Dfile_id_unittest.cc168 Notes notes(kLittleEndian);
169 notes.AddNote(NT_GNU_BUILD_ID, "GNU", kExpectedIdentifier,
171 elf.AddSection(".note.gnu.build-id", notes, SHT_NOTE);
200 Notes notes(kLittleEndian);
201 notes.AddNote(0, "Linux",
203 notes.AddNote(NT_GNU_BUILD_ID, "GNU", kExpectedIdentifier,
205 int note_idx = elf.AddSection(".note", notes, SHT_NOTE);
H A Dsynth_elf_unittest.cc376 Notes notes(kLittleEndian);
378 ASSERT_TRUE(notes.GetContents(&contents));
383 Notes notes(kLittleEndian);
384 notes.AddNote(1, "Linux", reinterpret_cast<const uint8_t *>("\x42\x02\0\0"),
386 notes.AddNote(2, "a", reinterpret_cast<const uint8_t *>("foobar"),
404 EXPECT_EQ(kExpectedNotesSize, notes.Size());
407 ASSERT_TRUE(notes.GetContents(&notes_contents));
/external/linux-tools-perf/src/tools/perf/
H A Dbuiltin-annotate.c72 struct annotation *notes = symbol__annotation(he->ms.sym); local
73 if (notes->src == NULL && symbol__alloc_hist(he->ms.sym) < 0)
128 struct annotation *notes; local
133 notes = symbol__annotation(he->ms.sym);
134 if (notes->src == NULL) {
179 free(notes->src);
180 notes->src = NULL;
H A Dbuiltin-top.c93 struct annotation *notes; local
114 notes = symbol__annotation(sym);
115 if (notes->src != NULL) {
116 pthread_mutex_lock(&notes->lock);
120 pthread_mutex_lock(&notes->lock);
123 pthread_mutex_unlock(&notes->lock);
136 pthread_mutex_unlock(&notes->lock);
177 struct annotation *notes; local
187 notes = symbol__annotation(sym);
189 if (pthread_mutex_trylock(&notes
212 struct annotation *notes; local
[all...]
H A Dbuiltin-report.c124 struct annotation *notes = symbol__annotation(he->ms.sym); local
128 if (notes->src == NULL && symbol__alloc_hist(he->ms.sym) < 0)
137 struct annotation *notes; local
141 notes = symbol__annotation(mx->daddr.sym);
142 if (notes->src == NULL && symbol__alloc_hist(mx->daddr.sym) < 0)
205 struct annotation *notes; local
208 notes = symbol__annotation(bx->from.sym);
209 if (!notes->src
222 notes = symbol__annotation(bx->to.sym);
223 if (!notes
279 struct annotation *notes = symbol__annotation(he->ms.sym); local
[all...]
/external/elfutils/src/libdwfl/
H A Dcore-file.c123 dwfl_report_core_segments (Dwfl *dwfl, Elf *elf, size_t phnum, GElf_Phdr *notes) argument
130 if (notes != NULL)
131 notes->p_type = PT_NULL;
149 if (notes != NULL)
151 *notes = *phdr;
152 notes = NULL;
461 Elf_Data *notes = elf_getdata_rawchunk (elf, local
465 if (likely (notes != NULL))
471 while ((pos = gelf_getnote (notes, pos, &nhdr,
474 && !memcmp (notes
[all...]
H A Dlinux-kernel-modules.c53 #define KNOTESFILE "/sys/kernel/notes"
54 #define MODNOTESFMT "/sys/module/%s/notes"
437 intuit_kernel_bounds (Dwarf_Addr *start, Dwarf_Addr *end, Dwarf_Addr *notes) argument
445 *notes = 0;
474 if (*notes == 0 && !strcmp (p, "__start_notes\n"))
475 *notes = *end;
633 Dwarf_Addr notes; local
636 asm ("" : "=m" (notes));
637 int result = intuit_kernel_bounds (&start, &end, &notes);
641 return unlikely (mod == NULL) ? -1 : check_kernel_notes (mod, notes);
[all...]
H A Ddwfl_segment_report_module.c450 void *notes; local
452 notes = data;
455 notes = malloc (filesz);
456 if (unlikely (notes == NULL))
461 xlateto.d_buf = notes;
468 const GElf_Nhdr *nh = notes;
469 while ((const void *) nh < (const void *) notes + filesz)
473 if (unlikely ((size_t) ((const void *) notes + filesz
482 build_id_vaddr = note_desc - (const void *) notes + vaddr;
494 if (notes !
[all...]
/external/linux-tools-perf/src/tools/perf/ui/browsers/
H A Dannotate.c342 struct annotation *notes = symbol__annotation(sym); local
348 pthread_mutex_lock(&notes->lock);
350 list_for_each_entry(pos, &notes->src->source, node) {
361 next = disasm__get_next_ip_line(&notes->src->source, pos);
364 bpos->percent[i] = disasm__calc_percent(notes,
381 pthread_mutex_unlock(&notes->lock);
446 struct annotation *notes; local
461 notes = symbol__annotation(target);
462 pthread_mutex_lock(&notes->lock);
464 if (notes
484 struct annotation *notes = symbol__annotation(sym); local
523 struct annotation *notes = symbol__annotation(sym); local
562 struct annotation *notes = symbol__annotation(sym); local
875 struct annotation *notes; local
[all...]
/external/linux-tools-perf/src/tools/perf/ui/gtk/
H A Dannotate.c93 struct annotation *notes; local
101 notes = symbol__annotation(sym);
120 list_for_each_entry(pos, &notes->src->source, node) {
149 list_for_each_entry_safe(pos, n, &notes->src->source, node) {
/external/vboot_reference/firmware/lib/
H A Dvboot_audio.c59 * pad out the user's notes to a full 30 seconds. The caller should free it
97 * How many notes will fit in the flash region? One more than you'd
131 VBDEBUG(("VbGetDevMusicNotes: custom notes struct at %p\n", hdr));
141 this_msecs = hdr->notes[i].msec ;
145 hdr->notes[i].frequency >= 100 &&
146 hdr->notes[i].frequency <= 2000)
174 Memcpy(notebuf, hdr->notes, hdr->count * sizeof(VbDevMusicNote));
198 /* No custom notes, use the default. The count is already set. */
199 VBDEBUG(("VbGetDevMusicNotes: using %d default notes\n", count));
/external/vboot_reference/tests/
H A Dvboot_audio_tests.c27 /* Builtin notes */
54 /* Set correct checksum for custom notes */
57 hdr->count * sizeof(hdr->notes[0]));
71 use_notes = use_hdr->notes;
78 /* Compare two sets of notes */
H A Dvboot_api_devmode_tests.c45 note_event_t notes[MAX_NOTE_EVENTS]; member in struct:__anon16911
314 expected_event = test[i].notes;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/
H A DfeedPublish.emf.properties43 releaseNotesURL=http://www.eclipse.org/emf/news/release-notes.php?version=%%version%%
H A DfeedPublish.uml2.properties43 releaseNotesURL=http://www.eclipse.org/modeling/mdt/news/release-notes.php?project=uml2-uml&amp;version=%%version%%
/external/google-breakpad/src/third_party/libdisasm/
H A Dia32_insn.c184 static void ia32_handle_notes(x86_insn_t *insn, unsigned int notes) { argument
185 insn->note = (enum x86_insn_note) notes;
255 ia32_handle_notes( insn, raw_insn->notes );
H A Dia32_insn.h45 unsigned int notes; /* Notes for this instruction */ member in struct:__anon5324
259 /* insn notes */
/external/sonivox/jet_tools/JetCreator/
H A Dmidifile.py310 def __init__ (self, notes, exclude=True):
311 self.notes = notes
315 if event.note in self.notes:
1051 Experimental code to clean up overlapping notes
1101 # check for stuck notes
1215 # trim any notes that extend past the end
/external/wpa_supplicant_8/hs20/server/
H A Dspp_server.c227 const char *sessionid, const char *notes,
233 debug_print(ctx, 1, "eventlog: %s", notes);
245 "(user,realm,sessionid,timestamp,notes,dump,addr)"
249 user, realm, sessionid, notes,
265 const char *sessionid, const char *notes,
274 hs20_eventlog(ctx, user, realm, sessionid, notes, str);
225 hs20_eventlog(struct hs20_svc *ctx, const char *user, const char *realm, const char *sessionid, const char *notes, const char *dump) argument
263 hs20_eventlog_node(struct hs20_svc *ctx, const char *user, const char *realm, const char *sessionid, const char *notes, xml_node_t *node) argument
/external/icu/icu4c/source/tools/gensprep/
H A DfilterRFC3454.pl670 The RFC text can be downloaded from ftp://ftp.rfc-editor.org/in-notes/rfc3454.txt
/external/libcxxabi/src/Unwind/
H A DUnwindRegistersSave.S296 @ EHABI #7.4.5 notes that in general all VRS registers should be restored

Completed in 806 milliseconds

12