Searched refs:when (Results 1 – 25 of 2067) sorted by relevance
12345678910>>...83
/Linux-v5.4/scripts/coccinelle/iterators/ |
D | use_after_iter.cocci | 6 //#False positives arise when there is a goto in the iterator and the 43 list_for_each_entry@p1(c,...,member) { ... when != break; 44 when forall 45 when strict 48 list_for_each_entry_reverse@p1(c,...,member) { ... when != break; 49 when forall 50 when strict 53 list_for_each_entry_continue@p1(c,...,member) { ... when != break; 54 when forall 55 when strict [all …]
|
D | fen.cocci | 2 /// These iterators only exit normally when the loop cursor is NULL, so there 25 ... when != break; 26 when != goto l; 28 ... when != np = E 38 ... when != break; 39 when != goto l; 41 ... when != np = E 51 ... when != break; 52 when != goto l; 54 ... when != np = E [all …]
|
/Linux-v5.4/scripts/coccinelle/locks/ |
D | call_kern.cocci | 26 ... when != read_unlock_irq(...) 27 when != write_unlock_irq(...) 28 when != read_unlock_irqrestore(...) 29 when != write_unlock_irqrestore(...) 30 when != spin_unlock(...) 31 when != spin_unlock_irq(...) 32 when != spin_unlock_irqrestore(...) 33 when != local_irq_enable(...) 34 when any 36 ... when any [all …]
|
D | double_lock.cocci | 2 /// Find double locks. False positives may occur when some paths cannot 3 /// occur at execution, due to the values of variables, and when there is 51 <+... when != E1 55 ... when != E1 56 when != \(x = E2\|&x\) 57 when forall 59 <+... when != E1 73 ... when != E1 74 when != \(x = E2\|&x\)
|
/Linux-v5.4/drivers/media/dvb-frontends/ |
D | Kconfig | 15 A DVB-S/S2/DSS Multistandard demodulator. Say Y when you want 24 demodulator. Say Y when you want to support this tuner. 32 Say Y when you want to support these frontends. 41 Say Y when you want to support these frontends. 57 Say Y when you want to support these frontends. 66 Say Y when you want to support these frontends. 74 Say Y when you want to support this frontend. 86 Say Y when you want to support this frontend. 95 Say Y when you want to support this tuner. 105 Say Y when you want to support this frontend. [all …]
|
/Linux-v5.4/scripts/coccinelle/free/ |
D | put_device.cocci | 20 ... when != e = id 22 ... when != put_device(&id->dev) 23 when != platform_device_put(id) 24 when != of_dev_put(id) 25 when != if (id) { ... put_device(&id->dev) ... } 26 when != e1 = (T)id 27 when != e1 = (T)(&id->dev) 28 when != e1 = get_device(&id->dev) 29 when != e1 = (T1)platform_get_drvdata(id)
|
D | clk_put.cocci | 4 //# This only signals a missing clk_put when there is a clk_put later 27 ... when != clk_put(e) 29 ... when any 30 when != clk_put(e) 31 when != if (...) { ... clk_put(e); ... } 44 { ... when != clk_put(e) 45 when forall 48 ... when any
|
D | iounmap.cocci | 4 //# This only signals a missing iounmap when there is an iounmap later 27 ... when != iounmap(e) 29 ... when any 30 when != iounmap(e) 31 when != if (...) { ... iounmap(e); ... } 44 { ... when != iounmap(e) 45 when forall 48 ... when any
|
D | pci_free_consistent.cocci | 21 ... when != e = id 23 ... when != pci_free_consistent(x,y,id,z) 24 when != if (id) { ... pci_free_consistent(x,y,id,z) ... } 25 when != if (y) { ... pci_free_consistent(x,y,id,z) ... } 26 when != e = (T)id 27 when exists
|
/Linux-v5.4/Documentation/devicetree/bindings/usb/ |
D | dwc3.txt | 42 - snps,dis-start-transfer-quirk: when set, disable isoc START TRANSFER command 45 - snps,disable_scramble_quirk: true when SW should disable data scrambling. 47 - snps,has-lpm-erratum: true when DWC3 was configured with LPM Erratum enabled 51 - snps,req_p1p2p3_quirk: when set, the core will always request for 53 - snps,del_p1p2p3_quirk: when set core will delay P1/P2/P3 until a certain 55 - snps,del_phy_power_chg_quirk: when set core will delay PHY power change 57 - snps,lfps_filter_quirk: when set core will filter LFPS reception. 58 - snps,rx_detect_poll_quirk: when set core will disable a 400us delay to start 60 - snps,tx_de_emphasis_quirk: when set core will set Tx de-emphasis value. 63 - snps,dis_u3_susphy_quirk: when set core will disable USB3 suspend phy. [all …]
|
/Linux-v5.4/scripts/coccinelle/tests/ |
D | odd_ptr_err.cocci | 49 ... when any 50 when != IS_ERR(...) 59 ... when any 71 ... when any 72 when != IS_ERR(...) 80 ... when any 90 ... when any 91 when != IS_ERR(...) 95 ... when any
|
/Linux-v5.4/scripts/coccinelle/api/ |
D | kstrdup.cocci | 25 ... when != \(from = E1 \| to = E1 \) 27 ... when != \(from = E2 \| to = E2 \) 37 ... when != \( x = E1 \| from = E1 \) 40 ... when != \(x = E2 \| from = E2 \| to = E2 \) 42 ... when != \(x = E3 \| from = E3 \| to = E3 \) 55 ... when != \(from = E1 \| to = E1 \) 57 ... when != \(from = E2 \| to = E2 \) 68 ... when != \( x = E1 \| from = E1 \) 70 ... when != \(x = E2 \| from = E2 \| to = E2 \) 72 ... when != \(x = E3 \| from = E3 \| to = E3 \)
|
D | d_find_alias.cocci | 27 <...when != dput(dent) 28 when != if (...) { <+... dput(dent) ...+> } 29 when != true !dent || ... 30 when != dent = E 31 when != E = dent
|
/Linux-v5.4/Documentation/i2c/ |
D | fault-codes.rst | 43 Returned by I2C adapters when they lose arbitration in master 47 Also returned when trying to invoke an I2C operation in an 48 atomic context, when some task is already using that I2C bus 52 Returned by SMBus logic when an invalid Packet Error Code byte 61 Returned by SMBus adapters when the bus was busy for longer 69 specific fault code when you can. 72 This rather vague error means something went wrong when 74 code when you can. 85 Returned by any component that can't allocate memory when 98 Returned by an adapter when asked to perform an operation [all …]
|
/Linux-v5.4/scripts/coccinelle/misc/ |
D | returnvar.cocci | 9 // "when strict" can be removed to get more hits, but adds false 24 ... when != ret 25 when strict 37 ... when != ret 38 when strict 48 ... when != ret 49 when strict
|
/Linux-v5.4/Documentation/devicetree/bindings/dma/ |
D | ste-dma40.txt | 40 3. The DMA request line number (only when 'use fixed channel' is set) 44 Logical channel when unset 45 Physical channel when set 47 Memory to Device when unset 48 Device to Memory when set 50 Little endian when unset 51 Big endian when set 53 Use automatic channel selection when unset 54 Use DMA request line number when set 56 Normal priority when unset [all …]
|
/Linux-v5.4/Documentation/filesystems/ |
D | hpfs.txt | 37 bitmaps when accessing it). 39 Behaviour when filesystem errors found. 46 when you use chmod/chown/chgrp/mknod/ln -s on the filesystem. 55 are case sensitive, so for example when you create a file FOO, you can use 77 they're just changed. It means that when your default uid=0 and you type 79 extended attribute UID=0. And when you umount the fs and mount it again with 97 stored in very crazy way. They tried to do it so that link changes when file is 110 partition. It marked file name codepage as 850 - good. But when I again booted 116 probably uses different uppercasing method when searching where to place a file 117 (note, that files in HPFS directory must be sorted) and when searching for [all …]
|
/Linux-v5.4/Documentation/scheduler/ |
D | sched-stats.rst | 78 1) # of times in this domain load_balance() was called when the 81 the load did not require balancing when the cpu was idle 83 more tasks and failed, when the cpu was idle 85 load_balance() in this domain when the cpu was idle 86 5) # of times in this domain pull_task() was called when the cpu 89 the target task was cache-hot when idle 94 9) # of times in this domain load_balance() was called when the 97 load did not require balancing when busy 99 more tasks and failed, when the cpu was busy 101 load_balance() in this domain when the cpu was busy [all …]
|
/Linux-v5.4/Documentation/kbuild/ |
D | kbuild.rst | 18 by modprobe to not fail when trying to load something builtin. 31 Additional options to pass when preprocessing. The preprocessing options 53 Additional options for $(CC) when used to compile 62 Additional options used for $(LD) when linking modules. 66 Additional flags to be passed to $(HOSTCC) when building host programs. 70 Additional flags to be passed to $(HOSTCXX) when building host programs. 74 Additional flags to be passed when linking host programs. 78 Additional libraries to link against when building host programs. 95 Set the directory to look for the kernel source when building external 102 Specify the output directory when building the kernel. [all …]
|
/Linux-v5.4/Documentation/networking/ |
D | ipvs-sysctl.txt | 36 bit 1: enable rescheduling of new connections when it is safe. 37 That is, whenever expire_nodest_conn and for TCP sockets, when 41 bit 2: it is bit 1 plus, for TCP connections, when connections 61 Only available when IPVS is compiled with CONFIG_IP_VS_NFCT enabled. 68 directly when no cache server is available and destination 87 Only available when IPVS is compiled with CONFIG_IP_VS_DEBUG enabled. 107 modes (when there is no enough available memory, the strategy 122 when available memory is less than the available memory 131 packets when its destination server is not available. It may 132 be useful, when user-space monitoring program deletes the [all …]
|
/Linux-v5.4/Documentation/devicetree/bindings/arm/marvell/ |
D | armada-7k-8k.txt | 10 when the SoC being used is the Armada 7020 13 when the SoC being used is the Armada 7040 16 when the SoC being used is the Armada 8020 19 when the SoC being used is the Armada 8040
|
/Linux-v5.4/Documentation/firmware-guide/acpi/ |
D | method-tracing.rst | 26 ACPICA subsystem provides debugging outputs when CONFIG_ACPI_DEBUG is 33 But when the particular layer/level is applied to the control method 37 logs when the control method evaluation is started, and disable the 38 detailed logging when the control method evaluation is stopped. 43 a. Filter out the debug layer/level matched logs when control methods 51 b. Filter out the debug layer/level matched logs when the specified 60 c. Filter out the debug layer/level matched logs when the specified 109 a. Filter out the method start/stop "AML tracer" logs when control 117 b. Filter out the method start/stop "AML tracer" when the specified 126 c. Filter out the method start/stop "AML tracer" logs when the specified [all …]
|
/Linux-v5.4/Documentation/arm64/ |
D | tagged-pointers.rst | 32 - the stack pointer (sp), e.g. when interpreting it to deliver a 35 - the frame pointer (x29) and frame records, e.g. when interpreting 38 Using non-zero address tags in any of these locations when the 43 For these reasons, when the AArch64 Tagged Address ABI is disabled, 56 Non-zero tags are not preserved when delivering signals. This means that 66 This behaviour is maintained when the AArch64 Tagged Address ABI is 73 Special care should be taken when using tagged pointers, since it is
|
/Linux-v5.4/Documentation/input/devices/ |
D | elantech.rst | 68 trackpoint when a trackpoint is available. Disabling the Touchpad in xorg 81 On top of that, some register settings have effect only when the touchpad is 187 S: 1 = enable smart edges only when dragging 243 L, R, M = 1 when Left, Right, Middle mouse button pressed 245 when parity checking is enabled (reg_11, P = 1): 247 c = 1 when corner tap detected 255 byte 1 = 0xf0 when corner tap detected 275 when corner tap detected: 276 ds0 = 1 when top right corner tapped 277 ds1 = 1 when bottom right corner tapped [all …]
|
/Linux-v5.4/Documentation/ABI/testing/ |
D | sysfs-class-power-wilco | 14 Charging begins when level drops below 15 charge_control_start_threshold, and ceases when 22 Used when charge_type="Custom", as described above. Measured in 29 Used when charge_type="Custom", as described above. Measured in
|
12345678910>>...83