HomeSort by relevance Sort by last modified time
    Searched refs:notes (Results 1 - 25 of 45) sorted by null

1 2

  /external/linux-tools-perf/util/
annotate.c 5 * 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->src->source)
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...]
annotate.h 71 static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
73 return (((void *)&notes->src->histograms) +
74 (notes->src->sizeof_sym_hist * idx));
  /external/smack/src/org/jivesoftware/smackx/workgroup/ext/notes/
ChatNotes.java 20 package org.jivesoftware.smackx.workgroup.ext.notes;
27 * IQ packet for retrieving and adding Chat Notes.
34 public static final String ELEMENT_NAME = "chat-notes";
43 private String notes; field in class:ChatNotes
54 return notes;
57 public void setNotes(String notes) {
58 this.notes = notes;
68 buf.append("<notes>").append(getNotes()).append("</notes>");
    [all...]
  /system/media/camera/docs/
metadata_template.mako 64 % if prop.notes is not None:
65 <notes>${prop.notes}</notes>
110 % if value.notes is not None:
111 <notes>${value.notes}</notes>
130 % if prop.notes is not None:
131 <notes>${prop.notes | x}</notes
    [all...]
html.mako 132 <th class="th_notes">Notes</th>
156 <th class="th_notes">Notes</th>
181 % if prop.notes is not None:
182 <notes>${prop.notes | h,wbr}</notes>
230 % if value.notes is not None:
231 <span class="entry_type_enum_notes">${value.notes | wbr}</span>
259 % if prop.notes is not None:
260 ${prop.notes | wbr, br
    [all...]
metadata_parser_xml.py 163 notes = value.find('notes')
164 if notes is not None:
165 enum_notes[value_body] = notes.string
204 optional_elements = ['description', 'range', 'units', 'notes']
  /libcore/dalvik/src/main/java/dalvik/annotation/
TestTargetNew.java 63 String notes() default "";
  /external/chromium/chrome/browser/resources/
keyboard_overlay_data.js 12 "notes": "power",
19 "notes": "escape",
108 "notes": "backspace",
115 "notes": "tab",
204 "notes": "enter",
211 "notes": "left ctrl",
301 "notes": "left shift",
381 "notes": "right shift",
391 "notes": "left alt",
462 "notes": "right ctrl"
    [all...]
  /external/linux-tools-perf/util/ui/browsers/
annotate.c 71 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 = symbol__annotation(sym)
    [all...]
top.c 5 * 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);
  /external/elfutils/libdwfl/
core-file.c 145 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->d_buf + name_pos, "CORE", sizeof "CORE")
    [all...]
dwfl_segment_report_module.c 293 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 != data
    [all...]
linux-kernel-modules.c 73 #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)
379 *notes = 0;
400 if (*notes == 0)
405 *notes = last;
568 Dwarf_Addr notes; local
570 zero NOTES will be initialized. Fake the initialization. */
571 asm ("" : "=m" (notes));
572 int result = intuit_kernel_bounds (&start, &end, &notes);
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
Notepadv1.java 66 // Get all of the notes from the database and create the item list
74 SimpleCursorAdapter notes = local
76 setListAdapter(notes);
  /external/smack/src/org/jivesoftware/smackx/packet/
AdHocCommandData.java 52 private List<AdHocCommandNote> notes = new ArrayList<AdHocCommandNote>(); field in class:AdHocCommandData
117 for (AdHocCommandNote note : notes) {
172 * Returns the list of notes that the command has.
174 * @return the notes.
177 return notes;
181 this.notes.add(note);
185 this.notes.remove(note);
  /external/linux-tools-perf/
builtin-annotate.c 74 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;
builtin-top.c 160 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->lock)
240 struct annotation *notes; local
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
Notepadv2.java 63 SimpleCursorAdapter notes = local
65 setListAdapter(notes);
  /external/dropbear/libtomcrypt/
build.sh 10 for f in *_tv.txt; do if (diff --ignore-case $f notes/$f) then true; else (echo "tv_gen $f failed" && rm -f testok.txt && exit 1); fi; done
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
Notepadv3.java 63 SimpleCursorAdapter notes = local
65 setListAdapter(notes);
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
Notepadv2.java 65 SimpleCursorAdapter notes = local
67 setListAdapter(notes);
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
Notepadv3.java 65 SimpleCursorAdapter notes = local
67 setListAdapter(notes);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/
feedPublish.emf.properties 43 releaseNotesURL=http://www.eclipse.org/emf/news/release-notes.php?version=%%version%%
feedPublish.uml2.properties 43 releaseNotesURL=http://www.eclipse.org/modeling/mdt/news/release-notes.php?project=uml2-uml&amp;version=%%version%%
  /external/openssl/crypto/des/
FILES0 9 KERBEROS - Kerberos version 4 notes.

Completed in 811 milliseconds

1 2