Home
last modified time | relevance | path

Searched full:notes (Results 1 – 25 of 1247) sorted by relevance

12345678910>>...50

/openbmc/openbmc/poky/documentation/migration-guides/
H A Drelease-4.0.rst9 release-notes-4.0
10 release-notes-4.0.1
11 release-notes-4.0.2
12 release-notes-4.0.3
13 release-notes-4.0.4
14 release-notes-4.0.5
15 release-notes-4.0.6
16 release-notes-4.0.7
17 release-notes-4.0.8
18 release-notes-4.0.9
[all …]
H A Drelease-5.0.rst9 release-notes-5.0
10 release-notes-5.0.1
11 release-notes-5.0.2
12 release-notes-5.0.3
13 release-notes-5.0.4
14 release-notes-5.0.5
H A Drelease-4.3.rst9 release-notes-4.3
10 release-notes-4.3.1
11 release-notes-4.3.2
12 release-notes-4.3.3
13 release-notes-4.3.4
H A Drelease-3.4.rst9 release-notes-3.4
10 release-notes-3.4.1
11 release-notes-3.4.2
12 release-notes-3.4.3
13 release-notes-3.4.4
H A Drelease-4.1.rst9 release-notes-4.1
10 release-notes-4.1.1
11 release-notes-4.1.2
12 release-notes-4.1.3
13 release-notes-4.1.4
H A Drelease-4.2.rst9 release-notes-4.2
10 release-notes-4.2.1
11 release-notes-4.2.2
12 release-notes-4.2.3
13 release-notes-4.2.4
H A Drelease-notes-4.3.1.rst3 Release notes for Yocto-4.3.1 (Nanbield)
38 - dev-manual: layers: Add notes about layer.conf
65 - migration-guides: add kernel notes
66 - migration-guides: add testing notes
67 - migration-guides: add utility notes
125 - release-notes-4.3: add CVEs, recipe upgrades, license changes, contributors
126 - release-notes-4.3: add Repositories / Downloads section
127 - release-notes-4.3: feature additions
128 - release-notes-4.3: fix some typos
129 - release-notes-4.3: move new classes to Rust section
[all …]
/openbmc/phosphor-power/phosphor-regulators/docs/config_file/
H A Daction.md23 | and | see [notes](#notes) | array of actions …
24 | compare_presence | see [notes](#notes) | [compare_presence](compare_presence.md) …
25 | compare_vpd | see [notes](#notes) | [compare_vpd](compare_vpd.md) …
26 | i2c_capture_bytes | see [notes](#notes) | [i2c_capture_bytes](i2c_capture_bytes.md) …
27 | i2c_compare_bit | see [notes](#notes) | [i2c_compare_bit](i2c_compare_bit.md) …
28 | i2c_compare_byte | see [notes](#notes) | [i2c_compare_byte](i2c_compare_byte.md) …
29 | i2c_compare_bytes | see [notes](#notes) | [i2c_compare_bytes](i2c_compare_bytes.md) …
30 | i2c_write_bit | see [notes](#notes) | [i2c_write_bit](i2c_write_bit.md) …
31 | i2c_write_byte | see [notes](#notes) | [i2c_write_byte](i2c_write_byte.md) …
32 | i2c_write_bytes | see [notes](#notes) | [i2c_write_bytes](i2c_write_bytes.md) …
[all …]
H A Dsensor_monitoring.md27 | rule_id | see [notes](#notes) | string | Unique ID of the [rule](rule.md)…
28 | actions | see [notes](#notes) | array of [actions](action.md) | One or more actions to execute. …
30 ### Notes subsection
H A Dconfiguration.md28 | rule_id | see [notes](#notes) | string | Unique ID of the [rule](rule.md)…
29 | actions | see [notes](#notes) | array of [actions](action.md) | One or more actions to execute. …
31 ### Notes subsection
H A Dpresence_detection.md43 | rule_id | see [notes](#notes) | string | Unique ID of the [rule](rule.md)…
44 | actions | see [notes](#notes) | array of [actions](action.md) | One or more actions to execute. …
46 ### Notes subsection
/openbmc/linux/Documentation/trace/coresight/
H A Dcoresight-etm4x-reference.rst24 :Notes:
41 :Notes:
51 :Notes:
64 :Notes:
76 :Notes:
90 :Notes:
103 :Notes:
126 :Notes:
139 :Notes:
151 :Notes:
[all …]
/openbmc/linux/tools/perf/util/
H A Dannotate.h222 void annotation_line__write(struct annotation_line *al, struct annotation *notes,
225 int __annotation__scnprintf_samples_period(struct annotation *notes,
308 static inline void annotation__init(struct annotation *notes __maybe_unused) in annotation__init()
311 void annotation__exit(struct annotation *notes);
313 void annotation__lock(struct annotation *notes) EXCLUSIVE_LOCK_FUNCTION(*notes);
314 void annotation__unlock(struct annotation *notes) UNLOCK_FUNCTION(*notes);
315 bool annotation__trylock(struct annotation *notes) EXCLUSIVE_TRYLOCK_FUNCTION(true, *notes);
317 static inline int annotation__cycles_width(struct annotation *notes) in annotation__cycles_width() argument
319 if (notes->branch && notes->options->show_minmax_cycle) in annotation__cycles_width()
322 return notes->branch ? ANNOTATION__IPC_WIDTH + ANNOTATION__CYCLES_WIDTH : 0; in annotation__cycles_width()
[all …]
H A Dannotate.c6 * copyright notes.
852 struct annotation *notes = symbol__annotation(sym); in symbol__annotate_zero_histograms() local
854 annotation__lock(notes); in symbol__annotate_zero_histograms()
855 if (notes->src != NULL) { in symbol__annotate_zero_histograms()
856 memset(notes->src->histograms, 0, in symbol__annotate_zero_histograms()
857 notes->src->nr_histograms * notes->src->sizeof_sym_hist); in symbol__annotate_zero_histograms()
859 if (notes->branch && notes->branch->cycles_hist) { in symbol__annotate_zero_histograms()
860 memset(notes->branch->cycles_hist, 0, in symbol__annotate_zero_histograms()
863 annotation__unlock(notes); in symbol__annotate_zero_histograms()
952 static struct annotated_branch *annotation__get_branch(struct annotation *notes) in annotation__get_branch() argument
[all …]
/openbmc/linux/tools/perf/ui/browsers/
H A Dannotate.c42 struct annotation *notes = browser__annotation(browser); in disasm_line__filter() local
44 return annotation_line__filter(al, notes); in disasm_line__filter()
49 struct annotation *notes = browser__annotation(browser); in ui_browser__jumps_percent_color() local
53 if (nr == notes->max_jump_sources) in ui_browser__jumps_percent_color()
93 struct annotation *notes = browser__annotation(browser); in annotate_browser__write() local
116 annotation_line__write(al, notes, &ops); in annotate_browser__write()
158 struct annotation *notes = symbol__annotation(sym); in annotate_browser__draw_current_jump() local
159 u8 pcnt_width = annotation__pcnt_width(notes); in annotate_browser__draw_current_jump()
190 target = notes->offsets[cursor->ops.target.offset]; in annotate_browser__draw_current_jump()
192 ui_helpline__printf("WARN: jump target inconsistency, press 'o', notes->offsets[%#x] = NULL\n", in annotate_browser__draw_current_jump()
[all …]
/openbmc/phosphor-logging/extensions/openpower-pels/registry/
H A Dmessage_registry.json21 "Notes": ["The journal should contain more information"] array
38 "Notes": ["The journal should contain more information"] array
59 "Notes": ["The journal should contain more information"] array
75 "Notes": ["The journal should contain more information"] array
92 "Notes": ["The journal should contain more information"] array
129 "Notes": [ array
158 "Notes": [ array
187 "Notes": [ array
216 "Notes": [ array
248 "Notes": [ array
[all …]
/openbmc/openbmc/poky/scripts/
H A Doe-setup-build36 notespath = os.path.join(template_dir, d, 'conf-notes.txt')
37 try: notes = open(notespath).read()
38 except: notes = None
41 …mplatepath":templatepath,"buildpath":buildpath,"notespath":notespath,"notes":notes,"summary":summa…
55 …print("Usage notes:", t["notespath"] if t["notes"] else "This configuration does not have usage no…
115 help='Print detailed information and usage notes for each available build configuration.')
/openbmc/openbmc/meta-openembedded/meta-xfce/recipes-panel-plugins/notes/
H A Dxfce4-notes-plugin_1.11.0.bb1 SUMMARY = "Notes plugin for the Xfce Panel"
2 HOMEPAGE = "http://goodies.xfce.org/projects/panel-plugins/xfce4-notes-plugin"
13 # Add /usr/share/xfce4/notes/gtk-3.0/gtk.css
14 FILES:${PN} += "${datadir}/xfce4/notes"
/openbmc/linux/kernel/module/
H A Dsysfs.c140 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
145 unsigned int notes; member
174 unsigned int notes, loaded, i; in add_notes_attrs() local
178 /* failed to create section attributes, so can't create notes */ in add_notes_attrs()
182 /* Count notes sections and allocate structures. */ in add_notes_attrs()
183 notes = 0; in add_notes_attrs()
187 ++notes; in add_notes_attrs()
189 if (notes == 0) in add_notes_attrs()
192 notes_attrs = kzalloc(struct_size(notes_attrs, attrs, notes), in add_notes_attrs()
197 notes_attrs->notes = notes; in add_notes_attrs()
[all …]
/openbmc/openbmc/meta-arm/meta-arm-bsp/documentation/corstone1000/
H A Drelease-notes.rst7 Release notes
23 Release notes - 2024.11
26 The same notes as the 2024.06 release still apply.
29 Release notes - 2024.06
38 - See previous release notes for the known limitations regarding ACS tests.
58 Release notes - 2023.11
69 - See previous release notes for the known limitations regarding ACS tests.
79 Release notes - 2023.06
92 - Known limitations regarding ACS tests - see previous release's notes.
102 Release notes - 2022.11.23
[all …]
/openbmc/openbmc/meta-arm/meta-arm/recipes-test/pacbti/
H A Dtest-pacbti.bb17 ${READELF} --notes a.out | grep "AArch64 feature" >notes
18 grep BTI notes
19 grep PAC notes
/openbmc/linux/Documentation/userspace-api/ioctl/
H A Dcdrom.rst164 notes:
195 notes:
252 notes:
279 notes:
304 notes:
331 notes:
358 notes:
436 notes:
469 notes:
487 notes:
[all …]
/openbmc/linux/drivers/staging/rtl8723bs/include/
H A Drtw_cmd.h165 Notes: To join a known BSS.
174 Notes: To join the specified bss
186 Notes: To disconnect the current associated BSS
198 Notes: To create a BSS
209 Notes: To set the NIC mode of RTL8711
232 Notes: To ask RTL8711 performing site-survey
251 Notes: To set the auth type of RTL8711. open/shared/802.1x
340 Notes: To notify fw that given staid has changed its power state
354 Notes: To setup the basic rate of RTL8711
366 Notes: To read the current basic rate
[all …]
/openbmc/u-boot/tools/patman/
H A Dpatchstream.py68 self.notes = [] # Series notes
89 if name == 'notes':
105 if name == 'notes':
189 elif self.in_section == 'notes':
191 self.series.notes += self.section
192 elif self.in_section == 'commit-notes':
194 self.commit.notes += self.section
211 elif self.in_section == 'notes':
213 self.series.notes += self.section
214 elif self.in_section == 'commit-notes':
[all …]
/openbmc/linux/include/xen/interface/
H A Devent_channel.h22 * NOTES:
40 * NOTES:
55 * NOTES:
71 * NOTES:
87 * NOTES:
122 * NOTES:
157 * NOTES:
183 * NOTES:

12345678910>>...50