Searched refs:is (Results 1 – 25 of 96) sorted by relevance
1234
| /scripts/kconfig/tests/preprocess/builtin_func/ |
| D | Kconfig | 6 # 'warning-if', if the first argument is y, sends the second argument to stderr, 7 # and the message is prefixed with the current file name and line number. 10 # 'error-if' is similar, but it terminates the parsing immediately. 11 # The following is just no-op since the first argument is not y. 20 # Every newline in the output is replaced with a space, 24 # 'filename' is expanded to the currently parsed file name,
|
| /scripts/ |
| D | subarch.include | 1 # SUBARCH tells the usermode build what the underlying arch is. That is set 2 # first, and if a usermode build is happening, the "ARCH=um" on the command 3 # line overrides the setting of ARCH below. If a native build is happening, 4 # then ARCH is assigned, getting whatever value it gets normally, and 5 # SUBARCH is subsequently ignored.
|
| D | Kbuild.include | 85 # filechk is used to check if the content of a generated file is updated. 94 # - If no file exist it is created 95 # - If the content differ the new file is used 123 # If quiet is "silent_", print nothing and sink stdout 124 # If quiet is "quiet_", print short log 125 # If quiet is empty, print short log and whole command 137 # However, this does not work when the stderr is piped to another program, like 146 # Of course, this is unneeded for phony targets. 156 # if_changed - execute command if any prerequisite is newer than 164 # Check if both commands are the same including their order. Result is empty [all …]
|
| D | head-object-list.txt | 4 # is an object that contains the entry point. This is kept for compatibility 7 # A counter approach is to control the section placement by the linker script. 8 # The code marked as __HEAD goes into the ".head.text" section, which is placed
|
| D | Makefile.lib | 136 …$(GCOV_PROFILE_$(target-stem).o)$(GCOV_PROFILE)$(if $(is-kernel-object),$(CONFIG_GCOV_PROFILE_ALL)… 147 $(KASAN_SANITIZE_$(target-stem).o)$(KASAN_SANITIZE)$(is-kernel-object)), \ 150 $(KASAN_SANITIZE_$(target-stem).o)$(KASAN_SANITIZE)$(is-kernel-object)), \ 157 $(KMSAN_SANITIZE_$(target-stem).o)$(KMSAN_SANITIZE)$(is-kernel-object)), \ 160 $(KMSAN_ENABLE_CHECKS_$(target-stem).o)$(KMSAN_ENABLE_CHECKS)$(is-kernel-object)), \ 166 $(UBSAN_SANITIZE_$(target-stem).o)$(UBSAN_SANITIZE)$(is-kernel-object)), \ 169 …m).o)$(UBSAN_SANITIZE_$(target-stem).o)$(UBSAN_SIGNED_WRAP)$(UBSAN_SANITIZE)$(is-kernel-object)), \ 175 …$(KCOV_INSTRUMENT_$(target-stem).o)$(KCOV_INSTRUMENT)$(if $(is-kernel-object),$(CONFIG_KCOV_INSTRU… 178 …$(KCOV_INSTRUMENT_$(target-stem).o)$(KCOV_INSTRUMENT)$(if $(is-kernel-object),$(CONFIG_KCOV_INSTRU… 188 $(KCSAN_SANITIZE_$(target-stem).o)$(KCSAN_SANITIZE)$(is-kernel-object)), \ [all …]
|
| /scripts/dtc/ |
| D | dtx_diff | 29 -s SRCTREE linux kernel source tree is at path SRCTREE 30 (default is current directory) 31 -S linux kernel source tree is at root of current git repo 37 Each DTx is processed by the dtc compiler to produce a sorted dts source 38 file. If DTx is a dts source file then it is pre-processed in the same 44 If DTx is a directory, it is treated as a DT subtree, such as 48 it is treated as a binary blob (aka .dtb or FDT). 50 Otherwise DTx is treated as a dts source file (aka .dts). 52 If this script is not run from the root of the linux source tree, 62 may not work since \${ARCH} is part of the include path. The following [all …]
|
| /scripts/kconfig/tests/preprocess/variable/ |
| D | expected_stderr | 7 Kconfig:45: Hello, my name is John. 8 Kconfig:50: Hello, my name is . 9 Kconfig:53: Hello, my name is John.
|
| /scripts/coccinelle/free/ |
| D | ifnullfree.cocci | 2 /// NULL check before some freeing functions is not needed. 5 /// "kfree(NULL) is safe this check is probably not required" 60 cocci.print_main("NULL check before that freeing function is not needed", p) 66 msg = "WARNING: NULL check before some freeing functions is not needed."
|
| D | ifnulldev_put.cocci | 2 /// Since commit b37a46683739 ("netdevice: add the case if dev is NULL"), 3 /// NULL check before dev_{put, hold} functions is not needed. 48 cocci.print_main("NULL check before dev_{put, hold} functions is not needed", p) 54 msg = "WARNING: NULL check before dev_{put, hold} functions is not needed."
|
| D | devm_free.cocci | 4 /// the device is detached, and thus the use of the standard freeing 8 /// A difficulty of detecting this problem is that the standard freeing 10 /// containing the allocation function. It is thus necessary to make the 12 /// Here this is done using the specific argument text, which is prone to 13 /// false positives. There is no rule for the request_region and
|
| /scripts/coccinelle/misc/ |
| D | array_size_dup.cocci | 5 /// 1. An opencoded expression is used before array_size() to compute the same size 6 /// 2. An opencoded expression is used after array_size() to compute the same size 7 /// From security point of view only first case is relevant. These functions 43 msg = "WARNING: array_size is used later (line %s) to compute the same size" % (p2[0].line) 51 msg = "WARNING: array_size is used later (line %s) to compute the same size" % (p2[0].line) 72 msg = "WARNING: array_size is already used (line %s) to compute the same size" % (p1[0].line) 80 msg = "WARNING: array_size is already used (line %s) to compute the same size" % (p1[0].line) 108 msg = "WARNING: array3_size is used later (line %s) to compute the same size" % (p2[0].line) 116 msg = "WARNING: array3_size is used later (line %s) to compute the same size" % (p2[0].line) 138 msg = "WARNING: array3_size is already used (line %s) to compute the same size" % (p1[0].line) [all …]
|
| D | uninitialized_var.cocci | 8 /// an initializer. Using warning-silencing tricks is dangerous as it 11 /// is uninitialized, either simply initialize the variable or make compiler 12 /// changes. Keep in mind that in most cases, if an initialization is 19 /// the macro is not explicitly or implicitly reintroduced. 50 coccilib.report.print_report(p[0], "WARNING this kind of initialization is deprecated") 56 coccilib.org.print_todo(p[0], "WARNING this kind of initialization is deprecated")
|
| D | excluded_middle.cocci | 3 /// Condition !A || A && B is equivalent to !A || B. 33 coccilib.report.print_report(p[0], "WARNING !A || A && B is equivalent to !A || B") 39 coccilib.org.print_todo(p[0], "WARNING !A || A && B is equivalent to !A || B")
|
| /scripts/atomic/kerneldoc/ |
| D | try_cmpxchg | 9 * Otherwise, @v is not modified, @old is updated to the current value of @v, 10 * and relaxed ordering is provided.
|
| D | inc_not_zero | 7 * Otherwise, @v is not modified and relaxed ordering is provided.
|
| D | inc_unless_negative | 7 * Otherwise, @v is not modified and relaxed ordering is provided.
|
| D | dec_unless_positive | 7 * Otherwise, @v is not modified and relaxed ordering is provided.
|
| D | dec_if_positive | 7 * Otherwise, @v is not modified and relaxed ordering is provided.
|
| D | cmpxchg | 9 * Otherwise, @v is not modified and relaxed ordering is provided.
|
| /scripts/kconfig/tests/choice_randomize2/ |
| D | expected_config1 | 6 # CONFIG_B is not set 7 # CONFIG_FOO is not set
|
| /scripts/kconfig/tests/new_choice_with_dep/ |
| D | Kconfig | 6 This is a new symbol. 20 This is a new symbol, so should be asked. 37 This is a new symbol, so should be asked.
|
| /scripts/kconfig/tests/choice_randomize/ |
| D | expected_config1 | 5 # CONFIG_A is not set 8 # CONFIG_Y is not set
|
| D | expected_config2 | 5 # CONFIG_A is not set 7 # CONFIG_X is not set
|
| /scripts/package/debian/ |
| D | copyright | 1 This is a packaged upstream version of the Linux kernel. 8 The git repository for mainline kernel development is at: 11 This program is free software; you can redistribute it and/or modify
|
| /scripts/kconfig/lxdialog/ |
| D | BIG.FAT.WARNING | 1 This is NOT the official version of dialog. This version has been 2 significantly modified from the original. It is for use by the Linux
|
1234