Home
last modified time | relevance | path

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

12345678910>>...16

/openbmc/linux/fs/xfs/
H A Dxfs_health.c30 unsigned int checked = 0; in xfs_health_unmount() local
125 unsigned int *checked) in xfs_fs_measure_sickness() argument
168 unsigned int *checked) in xfs_rt_measure_sickness() argument
211 unsigned int *checked) in xfs_ag_measure_sickness() argument
263 unsigned int *checked) in xfs_inode_measure_sickness() argument
267 *checked = ip->i_checked; in xfs_inode_measure_sickness()
296 unsigned int checked, in xfgeo_health_tick() argument
313 unsigned int checked; in xfs_fsop_geom_health() local
316 geo->checked = 0; in xfs_fsop_geom_health()
349 unsigned int checked; in xfs_ag_geom_health() local
[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
249 if action == "STOPTASKS" and not self.checked[k]:
251 self.checked[k] = True
254 elif action == "HALT" and not self.checked[k]:
[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/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/linux/security/tomoyo/
H A Dcondition.c27 u8 *checked) in tomoyo_argv() argument
38 *checked = 1; in tomoyo_argv()
62 u8 *checked) in tomoyo_envp() argument
77 *checked = 1; in tomoyo_envp()
119 u8 *checked; in tomoyo_scan_bprm() local
122 checked = local_checked; in tomoyo_scan_bprm()
126 if (!checked) in tomoyo_scan_bprm()
162 checked)) { in tomoyo_scan_bprm()
195 if (checked[i]) in tomoyo_scan_bprm()
207 if (checked[argc + i]) in tomoyo_scan_bprm()
[all …]
/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/poky/meta/recipes-support/vim/files/
H A Dvim-add-knob-whether-elf.h-are-checked.patch4 Subject: [PATCH] vim: add knob whether elf.h are checked
6 Previously, it still was checked when there was no elf library in sysroots directory.
7 Add knob to decide whether elf.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});
H A Dtable.js251 this.onHeaderSelectChange = (checked) => {
252 this.selectHeaderCheckbox = 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/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/openbmc/meta-openembedded/meta-networking/recipes-support/memcached/memcached/
H A Dmemcached-add-hugetlbfs-check.patch1 memcached: add knob to detect whether hugetlbfs are checked
3 Add knob to detect whether hugetlbfs are checked or not.
/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-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/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/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/openbmc/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-mypy-extensions_1.0.0.bb1 SUMMARY = "Experimental type system extensions for programs checked with the mypy typechecker"
/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/
H A DKbuild61 atomic-checks += $(addprefix $(obj)/.checked-, \
67 $(atomic-checks): $(obj)/.checked-%: include/linux/atomic/% FORCE
/openbmc/linux/Documentation/sphinx-static/
H A Dcustom.css56 input[type=checkbox]:checked ~ label.kernel-toc-title:after {
70 input[type=checkbox]:checked ~ div.kerneltoc {

12345678910>>...16