| /linux/drivers/media/rc/ |
| H A D | ir_toy.c | 73 uint emitted; member 155 u16 emitted = get_unaligned_be16(irtoy->in + 1); in irtoy_response() local 157 dev_dbg(irtoy->dev, "emitted:%u\n", emitted); in irtoy_response() 159 irtoy->emitted = emitted; in irtoy_response() 325 irtoy->emitted = 0; in irtoy_tx() 359 if (size != irtoy->emitted) { in irtoy_tx() 360 dev_err(irtoy->dev, "expected %u emitted, got %u\n", size, in irtoy_tx() 361 irtoy->emitted); in irtoy_tx()
|
| /linux/Documentation/input/ |
| H A D | event-codes.rst | 18 The input protocol is a stateful protocol. Events are emitted only when values 125 the key's code is emitted with value 1. When the key is released, an event is 126 emitted with value 0. Some hardware send events when a key is repeated. These 158 BTN_TOUCH must be the first evdev code emitted in a synchronization frame. 178 Note: Historically some drivers emitted multiple of the finger count codes with 212 will be emitted in addition to REL_WHEEL or REL_HWHEEL. The REL_WHEEL 229 event should only be emitted while the tool is hovering, meaning in close 241 emitted only when the selected profile changes, indicating the newly 247 An event is emitted only when the selected profile changes, 356 traditional way, using emitted event types.
|
| /linux/Documentation/arch/s390/ |
| H A D | qeth.rst | 17 event with ACTION=CHANGE is emitted on behalf of the corresponding 31 notifications enabled, a udev event with ACTION=CHANGE is emitted. 32 It is emitted on behalf of the corresponding ccwgroup device when a host
|
| /linux/drivers/gpu/drm/i915/gt/ |
| H A D | selftest_ring_submission.c | 114 pr_err("pass[%d] wa_bb emitted for the kernel context\n", in mixed_contexts_sync() 125 pr_err("pass[%d] wa_bb *NOT* emitted after the kernel context\n", in mixed_contexts_sync() 136 pr_err("pass[%d] wa_bb *NOT* emitted for the user context switch\n", in mixed_contexts_sync() 167 pr_err("wa_bb emitted between the same user context\n"); in double_context_sync_00() 198 pr_err("wa_bb emitted between the same user context [with intervening kernel]\n"); in kernel_context_sync_00()
|
| /linux/drivers/gpu/drm/amd/amdgpu/ |
| H A D | amdgpu_fence.c | 342 * amdgpu_fence_count_emitted - get the count of emitted fences 346 * Get the number of fences emitted on the requested ring (all asics). 347 * Returns the number of emitted fences on the ring. Used by the 352 uint64_t emitted; in amdgpu_fence_count_emitted() local 357 emitted = 0x100000000ull; in amdgpu_fence_count_emitted() 358 emitted -= atomic_read(&ring->fence_drv.last_seq); in amdgpu_fence_count_emitted() 359 emitted += READ_ONCE(ring->fence_drv.sync_seq); in amdgpu_fence_count_emitted() 360 return lower_32_bits(emitted); in amdgpu_fence_count_emitted() 364 * amdgpu_fence_last_unsignaled_time_us - the time fence emitted until now 368 * between the time fence emitted and now. [all …]
|
| /linux/include/linux/ |
| H A D | hid_bpf.h | 135 * @hid_hw_request: called whenever a hid_hw_raw_request() call is emitted 150 * kernel itself emitted that call. For hidraw, ``source`` is set 163 * @hid_hw_output_report: called whenever a hid_hw_output_report() call is emitted 171 * kernel itself emitted that call. For hidraw, ``source`` is set
|
| /linux/Documentation/devicetree/bindings/iio/temperature/ |
| H A D | melexis,mlx90632.yaml | 27 Since measured object emissivity effects Infra Red energy emitted, 40 Since measured object emissivity effects Infra Red energy emitted,
|
| /linux/tools/include/nolibc/ |
| H A D | stdlib.h | 194 * buffer is filled from the first byte, and the number of characters emitted 235 * number of characters emitted (not counting the trailing zero) is returned. 266 * number of characters emitted (not counting the trailing zero) is returned. 326 * the first byte, and the number of characters emitted (not counting the 370 * the first byte, and the number of characters emitted (not counting the 401 * the first byte, and the number of characters emitted (not counting the
|
| /linux/tools/testing/selftests/bpf/ |
| H A D | bpf_arena_common.h | 38 #define cast_kern(ptr) /* nop for bpf prog. emitted by LLVM */ 39 #define cast_user(ptr) /* nop for bpf prog. emitted by LLVM */
|
| /linux/drivers/gpu/drm/radeon/ |
| H A D | radeon_fence.c | 661 * radeon_fence_count_emitted - get the count of emitted fences 666 * Get the number of fences emitted on the requested ring (all asics). 667 * Returns the number of emitted fences on the ring. Used by the 672 uint64_t emitted; in radeon_fence_count_emitted() local 678 emitted = rdev->fence_drv[ring].sync_seq[ring] in radeon_fence_count_emitted() 681 if (emitted > 0x10000000) in radeon_fence_count_emitted() 682 emitted = 0x10000000; in radeon_fence_count_emitted() 684 return (unsigned int)emitted; in radeon_fence_count_emitted() 912 seq_printf(m, "Last emitted 0x%016llx\n", in radeon_debugfs_fence_info_show()
|
| /linux/fs/vboxsf/ |
| H A D | dir.c | 171 bool emitted; in vboxsf_dir_iterate() local 174 emitted = vboxsf_dir_emit(dir, ctx); in vboxsf_dir_iterate() 175 if (emitted) in vboxsf_dir_iterate() 177 } while (emitted); in vboxsf_dir_iterate()
|
| /linux/Documentation/dev-tools/ |
| H A D | checkpatch.rst | 94 Enable stricter tests in checkpatch. By default the tests emitted as CHECK 99 Every message emitted by checkpatch has an associated TYPE. Add this flag 103 and no message is emitted. Only a list of types in checkpatch is output. 129 length, a LONG_LINE message is emitted. 133 a WARNING is emitted. While a milder CHECK is emitted for files. So for 283 This message type is emitted only for includes from arch/. 544 This message is emitted due to any of the following reasons:: 767 not be emitted into the symbol table. This can prevent `objtool` 952 This warning is emitted due to any of the following reasons:
|
| /linux/tools/sched_ext/include/scx/ |
| H A D | bpf_arena_common.bpf.h | 20 #define cast_kern(ptr) /* nop for bpf prog. emitted by LLVM */ 21 #define cast_user(ptr) /* nop for bpf prog. emitted by LLVM */
|
| /linux/tools/testing/selftests/ |
| H A D | lib.mk | 65 # $2 - optional "flavor" specifier; if provided, will be emitted as [flavor]; 66 # $3 - target (assumed to be file); only file name will be emitted; 67 # $4 - optional extra arg, emitted as-is, if provided.
|
| /linux/Documentation/RCU/ |
| H A D | lockdep-splat.rst | 11 When such misuse is detected, an lockdep-RCU splat is emitted. 83 With this change, there would be no lockdep-RCU splat emitted if this
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-bus-hsi | 18 Description: Stores the same MODALIAS value emitted by uevent
|
| H A D | sysfs-devices | 21 chain will have emitted uevent messages, so userspace
|
| /linux/arch/arm64/kernel/vdso32/ |
| H A D | vgettimeofday.c | 35 /* Avoid unresolved references emitted by GCC */
|
| /linux/tools/testing/selftests/hid/ |
| H A D | Makefile | 42 # $2 - optional "flavor" specifier; if provided, will be emitted as [flavor]; 43 # $3 - target (assumed to be file); only file name will be emitted; 44 # $4 - optional extra arg, emitted as-is, if provided.
|
| /linux/Documentation/devicetree/bindings/power/reset/ |
| H A D | regulator-poweroff.yaml | 15 CPU still running after a 3000ms delay, a warning is emitted.
|
| /linux/arch/arm/vdso/ |
| H A D | vgettimeofday.c | 37 /* Avoid unresolved references emitted by GCC */
|
| /linux/arch/x86/include/asm/ |
| H A D | irq.h | 16 * __irqentry_text is emitted via labels. Make the build fail if
|
| /linux/arch/um/os-Linux/ |
| H A D | user_syms.c | 8 * built-in functions (where calls are emitted by the compiler
|
| /linux/drivers/acpi/acpica/ |
| H A D | uterror.c | 33 * only emitted the first time a problem with a particular 75 * are only emitted the first time a problem with a particular 117 * are only emitted the first time a problem with a particular
|
| /linux/drivers/gpu/drm/vmwgfx/ |
| H A D | vmwgfx_binding.h | 185 * that have not yet been emitted to the device. 187 * yet been emitted to the device.
|