Home
last modified time | relevance | path

Searched full:checked (Results 1 – 25 of 1945) sorted by relevance

12345678910>>...78

/openbmc/linux/fs/xfs/
H A Dxfs_health.c30 unsigned int checked = 0; in xfs_health_unmount() local
38 xfs_ag_measure_sickness(pag, &sick, &checked); in xfs_health_unmount()
46 xfs_rt_measure_sickness(mp, &sick, &checked); in xfs_health_unmount()
56 xfs_fs_measure_sickness(mp, &sick, &checked); in xfs_health_unmount()
125 unsigned int *checked) in xfs_fs_measure_sickness() argument
129 *checked = mp->m_fs_checked; in xfs_fs_measure_sickness()
168 unsigned int *checked) in xfs_rt_measure_sickness() argument
172 *checked = mp->m_rt_checked; in xfs_rt_measure_sickness()
211 unsigned int *checked) in xfs_ag_measure_sickness() argument
215 *checked = pag->pag_checked; in xfs_ag_measure_sickness()
[all …]
/openbmc/linux/fs/xfs/libxfs/
H A Dxfs_health.h25 * "checked" field tell us if a given piece of metadata has ever been examined,
29 * - checked && sick => metadata needs repair
30 * - checked && !sick => metadata is ok
31 * - !checked => has not been examined since mount
105 unsigned int *checked);
110 unsigned int *checked);
115 unsigned int *checked);
120 unsigned int *checked);
129 unsigned int sick, checked; in xfs_fs_has_sickness() local
131 xfs_fs_measure_sickness(mp, &sick, &checked); in xfs_fs_has_sickness()
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dmonitordisk.py187 self.checked = {}
191 self.checked[k] = False
216 … # Always show warning, the self.checked would always be False if the action is WARN
217 …self.preFreeS[k] == 0 or self.preFreeS[k] - freeSpace > self.spaceInterval and not self.checked[k]:
222 if action == "STOPTASKS" and not self.checked[k]:
224 self.checked[k] = True
227 elif action == "HALT" and not self.checked[k]:
229 self.checked[k] = True
243 … # Always show warning, the self.checked would always be False if the action is WARN
244 …self.preFreeI[k] == 0 or self.preFreeI[k] - freeInode > self.inodeInterval and not self.checked[k]:
[all …]
/openbmc/phosphor-networkd/src/
H A Dconfig_parser.hpp29 class Checked class
36 constexpr Checked(Args&&... args) : t(conCheck(std::forward<Args>(args)...)) in Checked() function in phosphor::network::config::Checked
40 constexpr Checked(unchecked, Args&&... args) : in Checked() function in phosphor::network::config::Checked
55 constexpr bool operator==(const Checked<T2, Check2>& rhs) const noexcept in operator ==()
96 inline size_t operator()(const Checked<std::string, T>& t) const in operator ()()
107 using Key = Checked<std::string, KeyCheck>;
108 using Section = Checked<std::string, SectionCheck>;
109 using Value = Checked<std::string, ValueCheck>;
/openbmc/phosphor-webui/app/common/styles/components/
H A Dform-elements.scss121 /* Checked state */
122 .control-check input:checked ~ .control__indicator {
126 /* Hover state whilst checked */
127 .control-check:hover input:not([disabled]):checked ~ .control__indicator {
145 .control-check input:not(:checked){
150 .control-check input:checked ~ .control__indicator:after {
204 .control-radio input:checked ~ .control__indicator {
233 .control-radio input:checked ~ .control__indicator:after {
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/raptor2/raptor2/
H A D0001-Remove-the-access-to-entities-checked-private-symbol.patch4 Subject: [PATCH] Remove the access to entities 'checked' private symbol for
9 'checked' is no longer present and raptor fails to build in this
28 /* Checked field was released in 2.6.27 on 2006-10-25
34 /* Mark this entity as having been checked - never do this again */
/openbmc/linux/include/linux/
H A Dwait.h338 * @condition evaluates to true. The @condition is checked each time
378 * @condition is checked each time the waitqueue @wq_head is woken up.
404 * @condition evaluates to true. The @condition is checked each time
468 * @condition evaluates to true. The @condition is checked each time
492 * The @condition is checked each time the waitqueue @wq_head is woken up.
522 * The @condition is checked each time the waitqueue @wq_head is woken up.
577 * The @condition is checked each time the waitqueue @wq_head is woken up.
603 * The @condition is checked each time the waitqueue @wq is woken up.
668 * The @condition is checked each time the waitqueue @wq_head is woken up.
688 * The @condition is checked each time the waitqueue @wq_head is woken up.
[all …]
H A Dzstd.h177 * Return: The compressed size or an error, which can be checked using
217 * Return: The decompressed size or an error, which can be checked using
287 * Return: Zero or an error, which can be checked using
307 * function call or an error, which can be checked using
324 * error, which can be checked using zstd_is_error().
338 * error, which can be checked using zstd_is_error().
376 * Return: Zero or an error, which can be checked using zstd_is_error().
397 * input for the next function call or an error, which can be checked
442 * an error, which can be checked using zstd_is_error().
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Dtable.js282 togglerInput.attr("checked","checked");
341 * also update the checked status in the Edit columns menu
347 $("#checkbox-"+cols_hidden[i]).removeAttr("checked");
357 $("#checkbox-"+defaultHiddenCols[i]).removeAttr("checked");
435 if ($(this).prop("checked")) {
450 $(".col-toggle").not(":checked").map(function(){
466 * NB this triggers a filtervalue event each time its radio button is checked
495 if ($(this).is(':checked')) {
518 * NB this triggers a filtervalue event each time its radio button is checked
592 if (radio.is(':checked')) {
[all …]
H A DlayerDepsModal.js43 deplistHtml +="\" type=\"checkbox\" checked=\"checked\"/>";
64 $("input[name='dependencies']:checked").each(function () {
/openbmc/linux/security/tomoyo/
H A Dcondition.c21 * @checked: Set to true if @argv[@index] was found.
27 u8 *checked) in tomoyo_argv() argument
33 for (i = 0; i < argc; argv++, checked++, i++) { in tomoyo_argv()
38 *checked = 1; in tomoyo_argv()
56 * @checked: Set to true if @envp[@env_name] was found.
62 u8 *checked) in tomoyo_envp() argument
72 for (i = 0; i < envc; envp++, checked++, i++) { in tomoyo_envp()
77 *checked = 1; in tomoyo_envp()
119 u8 *checked; in tomoyo_scan_bprm() local
122 checked = local_checked; in tomoyo_scan_bprm()
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/net-snmp/net-snmp/
H A D0001-net-snmp-add-knob-whether-nlist.h-are-checked.patch4 Subject: [PATCH] net-snmp: add knob whether nlist.h are checked
6 Previously, it still was checked when there was no nlish.h in sysroots directory.
7 Add knob to decide whether nlist.h are checked or not.
/openbmc/phosphor-webui/app/common/components/table/
H A Dtable-checkbox.js18 const checked = this.ngModel;
19 this.emitChange({checked}); field in AnonymousFunction45442cd80100.controller.AnonymousClass45442cd80201
47 'checked': $ctrl.ngModel,
/openbmc/openbmc/poky/scripts/contrib/
H A Dverify-homepage.py43 checked = []
48 if realfn in checked:
57 checked.append(realfn)
/openbmc/u-boot/doc/device-tree-bindings/adc/
H A Dadc.txt9 *optional and always checked, Voltage polarity info:
15 *optional and always checked, supply Voltage constants:
19 *optional and checked only if the above corresponding, doesn't exist:
/openbmc/linux/Documentation/filesystems/
H A Docfs2-online-filecheck.rst52 communicate with kernel space, tell which file(inode number) will be checked or
94 the inode must first be checked for errors before performing a final fix.
98 fixed/checked, the detailed errors which were fixed/checked are printed in the
/openbmc/phosphor-webui/app/common/styles/elements/
H A Dtoggle-switch.scss77 input.toggle-switch__round-flat:checked + label {
80 input.toggle-switch__round-flat:checked + label:before {
83 input.toggle-switch__round-flat:checked + label:after {
/openbmc/linux/drivers/misc/lkdtm/
H A Dbugs.c325 struct array_bounds *checked; in lkdtm_ARRAY_BOUNDS() local
329 checked = kmalloc(sizeof(*checked) * 2, GFP_KERNEL); in lkdtm_ARRAY_BOUNDS()
330 if (!not_checked || !checked) { in lkdtm_ARRAY_BOUNDS()
332 kfree(checked); in lkdtm_ARRAY_BOUNDS()
338 for (i = 0; i < sizeof(checked->data); i++) in lkdtm_ARRAY_BOUNDS()
339 checked->data[i] = 'A'; in lkdtm_ARRAY_BOUNDS()
348 for (i = 0; i < sizeof(checked->data) + 1; i++) in lkdtm_ARRAY_BOUNDS()
349 checked->data[i] = 'B'; in lkdtm_ARRAY_BOUNDS()
352 kfree(checked); in lkdtm_ARRAY_BOUNDS()
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templates/
H A Dfiltersnippet.html22 …ET.filter%}{{f.options|check_filter_status:request.GET.filter}} {%else%} checked {%endif%} value="…
29 …name="filter" id="filter_value_{{key}}" {%if key == daterange_selected %}checked{%endif%} value="{…
33 …<input type="radio" name="filter" {%if request.GET.filter == option.1 %}checked{%endif%} value="{…
36 …ype="radio" name="filter" disabled {%if request.GET.filter == option.1 %}checked{%endif%} value="…
H A Deditcustomimage_modal.html50 return $('[name="select-custom-image"]:checked');
85 $("input:radio:first").attr("checked", "checked");
H A Dprojectconf.html324 // Test to insure at least one FS Type is checked
327 $(".fs-checkbox-fstypes:checked").each(function(){
653 to get checked. Similarly when user deletes imagefs from
654 textbox the checkbox which is checked gets unchecked.
659 $(this).prop('checked', true);
661 $(this).prop('checked', false);
683 // Add the checked boxes first
687 …kbox" class="fs-checkbox-fstypes" value="'+fstypes_list[i].value+'" checked="checked">'+fstypes_li…
691 // Add the un-checked boxes second
707 // When checkbox is checked/unchecked kindly update the text
[all …]
/openbmc/linux/Documentation/core-api/
H A Ddebug-objects.rst73 When the real object is already tracked by debugobjects it is checked,
96 When the real object is already tracked by debugobjects it is checked,
120 When the real object is already tracked by debugobjects it is checked,
145 When the real object is tracked by debugobjects it is checked, whether
160 When the real object is tracked by debugobjects it is checked, whether
176 When the real object is tracked by debugobjects it is checked, whether
/openbmc/linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-n2-v2/
H A Dmemory.json36 …nts the number of memory read and write accesses in a cycle that are tag checked by the Memory Tag…
40 …ion": "Counts the number of memory read accesses in a cycle that are tag checked by the Memory Tag…
44 …ion": "Counts the number of memory write accesses in a cycle that is tag checked by the Memory Tag…
/openbmc/u-boot/include/linux/usb/
H A Dch9.h447 * @epd: endpoint to be checked
458 * @epd: endpoint to be checked
470 * @epd: endpoint to be checked
481 * @epd: endpoint to be checked
493 * @epd: endpoint to be checked
506 * @epd: endpoint to be checked
519 * @epd: endpoint to be checked
533 * @epd: endpoint to be checked
547 * @epd: endpoint to be checked
560 * @epd: endpoint to be checked
[all …]
/openbmc/openbmc-tools/dbus-vis/
H A Dindex.html54 <input type="checkbox" id="dbus_column5" value="Path"checked>Path</input>
55 <input type="checkbox" id="dbus_column6" value="Interface" checked>Interface</input>
60 <input type="checkbox" id="c1" value="NetFN" checked>NetFN</input>
61 <input type="checkbox" id="c2" value="CMD" checked>CMD</input>
65 <input type="checkbox" id="bah1" value="Layout Level" checked>Layout Level</input>

12345678910>>...78