Home
last modified time | relevance | path

Searched refs:checked (Results 1 – 25 of 392) sorted by relevance

12345678910>>...16

/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.h105 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()
138 unsigned int sick, checked; in xfs_rt_has_sickness() local
140 xfs_rt_measure_sickness(mp, &sick, &checked); in xfs_rt_has_sickness()
147 unsigned int sick, checked; in xfs_ag_has_sickness() local
149 xfs_ag_measure_sickness(pag, &sick, &checked); in xfs_ag_has_sickness()
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dmonitordisk.py187 self.checked = {}
191 self.checked[k] = False
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
244 …self.preFreeI[k] == 0 or self.preFreeI[k] - freeInode > self.inodeInterval and not self.checked[k]:
249 if action == "STOPTASKS" and not self.checked[k]:
251 self.checked[k] = True
[all …]
/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/linux/security/tomoyo/
H A Dcondition.c27 u8 *checked) in tomoyo_argv() argument
33 for (i = 0; i < argc; argv++, checked++, i++) { in tomoyo_argv()
38 *checked = 1; in tomoyo_argv()
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()
125 checked = kzalloc(argc + envc, GFP_NOFS); in tomoyo_scan_bprm()
126 if (!checked) in tomoyo_scan_bprm()
[all …]
/openbmc/phosphor-webui/app/common/styles/components/
H A Dform-elements.scss122 .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/poky/scripts/contrib/
H A Dverify-homepage.py43 checked = []
48 if realfn in checked:
57 checked.append(realfn)
/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/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
34 /* Mark this entity as having been checked - never do this again */
/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
H A Dtable.js251 this.onHeaderSelectChange = (checked) => {
252 this.selectHeaderCheckbox = checked;
/openbmc/linux/mm/kmsan/
H A Dcore.c55 bool checked = poison_flags & KMSAN_POISON_CHECK; in kmsan_internal_poison_memory() local
59 kmsan_internal_set_shadow_origin(address, size, -1, handle, checked); in kmsan_internal_poison_memory()
62 void kmsan_internal_unpoison_memory(void *address, size_t size, bool checked) in kmsan_internal_unpoison_memory() argument
64 kmsan_internal_set_shadow_origin(address, size, 0, 0, checked); in kmsan_internal_unpoison_memory()
262 u32 origin, bool checked) in kmsan_internal_set_shadow_origin() argument
275 if (checked) { in kmsan_internal_set_shadow_origin()
H A Dkmsan.h181 void kmsan_internal_unpoison_memory(void *address, size_t size, bool checked);
183 u32 origin, bool checked);
/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/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/openbmc/meta-openembedded/meta-networking/recipes-support/memcached/memcached/
H A Dmemcached-add-hugetlbfs-check.patch4 Subject: [PATCH] memcached: add knob to detect whether hugetlbfs are checked
6 Add knob to detect whether hugetlbfs are checked or not.
/openbmc/linux/drivers/sh/maple/
H A Dmaple.c59 static bool checked[MAPLE_PORTS]; variable
471 if (checked[x] && empty[x]) { in maple_vblank_handler()
562 if (checked[mdev->port] == false) { in maple_response_none()
563 checked[mdev->port] = true; in maple_response_none()
581 if ((mdev->unit == 0) && (checked[mdev->port] == false)) { in maple_response_devinfo()
582 checked[mdev->port] = true; in maple_response_devinfo()
620 if (checked[i] == false) { in maple_port_rescan()
840 checked[i] = false; in maple_bus_init()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/libid3tag/libid3tag/
H A Dunknown-encoding.patch2 return NULL, but the return value wasn't checked resulting
4 the return value wasn't checked.
/openbmc/webui-vue/src/env/assets/styles/
H A D_intel.scss55 .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after,
57 .custom-control-input:checked ~ .custom-control-label::before {
/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/linux/scripts/
H A Dspdxcheck.py109 self.checked = 0
198 self.checked += 1
410 sys.stderr.write('Files checked: %12d\n' %parser.checked)
412 if parser.checked:
413 pc = int(100 * parser.spdx_valid / parser.checked)
/openbmc/linux/fs/btrfs/
H A Dsubpage.c532 checked, start, len); in btrfs_subpage_set_checked()
537 if (subpage_test_bitmap_all_set(fs_info, subpage, checked)) in btrfs_subpage_set_checked()
547 checked, start, len); in btrfs_subpage_clear_checked()
580 IMPLEMENT_BTRFS_SUBPAGE_TEST_OP(checked);
650 IMPLEMENT_BTRFS_PAGE_OPS(checked, SetPageChecked, ClearPageChecked, PageChecked);
747 GET_SUBPAGE_BITMAP(subpage, subpage_info, checked, &checked_bitmap); in btrfs_subpage_dump_bitmap()
/openbmc/phosphor-ipmi-flash/
H A Dmeson.options112 description: 'The file checked for the verification status.',
118 description: 'The file checked for the update status',
124 description: 'The file checked for the verification status',
/openbmc/phosphor-fan-presence/control/json/actions/
H A Dmapped_floor.cpp249 bool checked = false; in getMaxGroupValue() local
261 if (!checked && (group.getMembers().size() > 1)) in getMaxGroupValue()
277 checked = true; in getMaxGroupValue()
/openbmc/linux/
H A DKbuild61 atomic-checks += $(addprefix $(obj)/.checked-, \
67 $(atomic-checks): $(obj)/.checked-%: include/linux/atomic/% FORCE

12345678910>>...16