| /linux/security/tomoyo/ |
| H A D | condition.c | 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() 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 …]
|
| /linux/drivers/misc/lkdtm/ |
| H A D | bugs.c | 433 struct array_bounds *checked; in lkdtm_ARRAY_BOUNDS() local 437 checked = kmalloc(sizeof(*checked) * 2, GFP_KERNEL); in lkdtm_ARRAY_BOUNDS() 438 if (!not_checked || !checked) { in lkdtm_ARRAY_BOUNDS() 440 kfree(checked); in lkdtm_ARRAY_BOUNDS() 446 for (i = 0; i < sizeof(checked->data); i++) in lkdtm_ARRAY_BOUNDS() 447 checked->data[i] = 'A'; in lkdtm_ARRAY_BOUNDS() 456 for (i = 0; i < sizeof(checked->data) + 1; i++) in lkdtm_ARRAY_BOUNDS() 457 checked->data[i] = 'B'; in lkdtm_ARRAY_BOUNDS() 460 kfree(checked); in lkdtm_ARRAY_BOUNDS()
|
| /linux/mm/kmsan/ |
| H A D | core.c | 54 bool checked = poison_flags & KMSAN_POISON_CHECK; in kmsan_internal_poison_memory() local 58 kmsan_internal_set_shadow_origin(address, size, -1, handle, checked); in kmsan_internal_poison_memory() 61 void kmsan_internal_unpoison_memory(void *address, size_t size, bool checked) in kmsan_internal_unpoison_memory() argument 63 kmsan_internal_set_shadow_origin(address, size, 0, 0, checked); in kmsan_internal_unpoison_memory() 192 u32 origin, bool checked) in kmsan_internal_set_shadow_origin() argument 206 if (checked) { in kmsan_internal_set_shadow_origin()
|
| H A D | kmsan.h | 157 void kmsan_internal_unpoison_memory(void *address, size_t size, bool checked); 159 u32 origin, bool checked);
|
| /linux/drivers/pci/hotplug/ |
| H A D | TODO | 5 * Returned code from pci_hp_add_bridge() is not checked. 17 * Returned code from pci_hp_add_bridge() is not checked. 36 * The return value of pci_hp_register() is not checked. 46 * Returned code from pci_hp_add_bridge() is not checked.
|
| /linux/drivers/sh/maple/ |
| H A D | maple.c | 59 static bool checked[MAPLE_PORTS]; variable 472 if (checked[x] && empty[x]) { in maple_vblank_handler() 563 if (checked[mdev->port] == false) { in maple_response_none() 564 checked[mdev->port] = true; in maple_response_none() 582 if ((mdev->unit == 0) && (checked[mdev->port] == false)) { in maple_response_devinfo() 583 checked[mdev->port] = true; in maple_response_devinfo() 621 if (checked[i] == false) { in maple_port_rescan() 840 checked[i] = false; in maple_bus_init()
|
| /linux/scripts/ |
| H A D | spdxcheck.py | 109 self.checked = 0 198 self.checked += 1 416 sys.stderr.write('Files checked: %12d\n' %parser.checked) 418 if parser.checked: 419 pc = int(100 * parser.spdx_valid / parser.checked) 421 missing = parser.checked - parser.spdx_valid 422 mpc = int(100 * missing / parser.checked)
|
| H A D | check-uapi.sh | 28 that exist on PAST_REF will be checked for compatibility. 33 -v Verbose operation (print more information about each header being checked).
|
| /linux/Documentation/core-api/ |
| H A D | errseq.rst | 37 record the state at the time that it was checked. This allows us to 39 can tell whether the value has changed since they last checked it. 111 whether one was made since they last checked, and the latest value 154 since the last time it was checked.
|
| H A D | debug-objects.rst | 73 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
|
| /linux/drivers/md/bcache/ |
| H A D | alloc.c | 213 size_t checked = 0; in invalidate_buckets_fifo() local 225 if (++checked >= ca->sb.nbuckets) { in invalidate_buckets_fifo() 236 size_t checked = 0; in invalidate_buckets_random() local 251 if (++checked >= ca->sb.nbuckets / 2) { in invalidate_buckets_random()
|
| /linux/Documentation/litmus-tests/ |
| H A D | README | 45 Demonstrates that double-checked locking needs more than just 49 Demonstrates corrected double-checked locking that uses
|
| /linux/Documentation/litmus-tests/locking/ |
| H A D | DCL-broken.litmus | 7 * correctly implement double-checked locking.
|
| H A D | DCL-fixed.litmus | 6 * This litmus test demonstrates that double-checked locking can be
|
| /linux/Documentation/input/devices/ |
| H A D | walkera0701.rst | 127 calculated by sum of binary values in checked nibbles + sum of octal values 128 in checked nibbles divided by 8. Only bit 0 of this sum is used.
|
| /linux/Documentation/driver-api/firmware/ |
| H A D | lookup-order.rst | 9 * The ''Built-in firmware'' is checked first, if the firmware is present we
|
| /linux/scripts/kconfig/tests/preprocess/variable/ |
| H A D | Kconfig | 47 # The number of arguments is not checked for user-defined functions.
|
| /linux/arch/arm/boot/dts/synaptics/ |
| H A D | berlin2cd-google-chromecast.dts | 31 * normally. Fortunately, this alternate property is checked
|
| /linux/Documentation/w1/slaves/ |
| H A D | w1_ds2406.rst | 26 CRCs are checked on read and write. Failed checks cause an I/O error to be
|
| /linux/scripts/coccinelle/misc/ |
| H A D | orplus.cocci | 3 /// The results should be checked manually to ensure that the nonzero
|
| /linux/Documentation/virt/kvm/x86/ |
| H A D | msr.rst | 56 Availability of this MSR must be checked via bit 3 in 0x4000001 cpuid 128 of specific flags has to be checked in 0x40000001 cpuid leaf. 144 Availability of this MSR must be checked via bit 3 in 0x4000001 cpuid 157 Availability of this MSR must be checked via bit 0 in 0x4000001 cpuid 169 Availability of this MSR must be checked via bit 0 in 0x4000001 cpuid
|
| /linux/Documentation/userspace-api/media/dvb/ |
| H A D | dmx-set-filter.rst | 39 state whether a section should be CRC-checked, whether the filter should
|
| /linux/fs/btrfs/ |
| H A D | backref.c | 3229 ASSERT(upper->checked); in handle_direct_tree_backref() 3376 upper->checked = 0; in handle_indirect_tree_backref() 3378 upper->checked = 1; in handle_indirect_tree_backref() 3385 if (!upper->checked && need_check) { in handle_indirect_tree_backref() 3390 if (upper->checked) in handle_indirect_tree_backref() 3397 ASSERT(upper->checked); in handle_indirect_tree_backref() 3456 WARN_ON(cur->checked); in btrfs_backref_add_tree_node() 3471 if (!exist->checked) in btrfs_backref_add_tree_node() 3540 cur->checked = 1; in btrfs_backref_add_tree_node() 3558 ASSERT(start->checked); in btrfs_backref_finish_upper_links() [all …]
|
| /linux/Documentation/admin-guide/pm/ |
| H A D | intel_epb.rst | 20 can be checked or updated through a ``sysfs`` attribute (file) under
|
| /linux/drivers/gpu/drm/ |
| H A D | drm_atomic.c | 208 state->checked = false; in drm_atomic_state_default_clear() 372 drm_WARN_ON(state->dev, state->checked); in drm_atomic_get_crtc_state() 553 drm_WARN_ON(state->dev, state->checked); in drm_atomic_get_plane_state() 986 drm_WARN_ON(state->dev, state->checked); in drm_atomic_get_private_obj_state() 1281 drm_WARN_ON(state->dev, state->checked); in drm_atomic_get_connector_state() 1740 state->checked = true; in drm_atomic_check_only()
|