Home
last modified time | relevance | path

Searched refs:missing (Results 1 – 16 of 16) sorted by relevance

/scripts/coccinelle/misc/
Dadd_namespace.cocci3 /// Adds missing MODULE_IMPORT_NS statements to source files
6 /// add a missing namespace tag to a module source file.
18 // Add missing imports, but only adjacent to a MODULE_LICENSE statement.
/scripts/coccinelle/free/
Dpci_free_consistent.cocci2 /// Find missing pci_free_consistent for every pci_alloc_consistent.
43 msg = "ERROR: missing pci_free_consistent; pci_alloc_consistent on line %s and return without freei…
51 msg = "ERROR: missing pci_free_consistent; pci_alloc_consistent on line %s and return without freei…
Dclk_put.cocci2 /// Find missing clk_puts.
4 //# This only signals a missing clk_put when there is a clk_put later
67 msg = "ERROR: missing clk_put; clk_get on line %s and execution via conditional on line %s" % (p1[0…
Diounmap.cocci2 /// Find missing iounmaps.
4 //# This only signals a missing iounmap when there is an iounmap later
67 msg = "ERROR: missing iounmap; ioremap on line %s and execution via conditional on line %s" % (p1[0…
Dput_device.cocci2 /// Find missing put_device for every of_find_device_by_node.
45 "ERROR: missing put_device; call of_find_device_by_node on line "
/scripts/
Dverify_builtin_ranges.awk348 missing++;
365 printf " Missing: %6d (%d%% of total)\n", missing, 100 * missing / total;
367 if (mismatches || missing)
DMakefile.modpost144 missing-input := vmlinux.o
169 missing-input := $(mixed-build-prefix)vmlinux.symvers
171 missing-input :=
191 missing-input := $(objtree)/Module.symvers
210 $(if $(missing-input), \
Dspdxcheck.py34 self.missing = 0
40 self.missing += miss
399 if not di.missing:
415 missing = parser.checked - parser.spdx_valid variable
416 mpc = int(100 * missing / parser.checked)
417 sys.stderr.write('Files without SPDX:%12d %3d%%\n' %(missing, mpc))
431 if di.missing:
432 valid = di.total - di.missing
Dsphinx-pre-install19 my %missing;
92 foreach my $prog (sort keys %missing) {
93 my $is_optional = $missing{$prog};
128 $missing{$package} = $is_optional;
873 %missing = ();
Drust_is_available_test.py94 cls.missing = pathlib.Path(cls.tempdir.name) / "missing"
178 result = self.run_script(self.Expected.FAILURE, { "RUSTC": self.missing })
182 result = self.run_script(self.Expected.FAILURE, { "BINDGEN": self.missing })
286 result = self.run_script(self.Expected.FAILURE, { "RUST_LIB_SRC": self.missing })
290 result = self.run_script(self.Expected.SUCCESS_WITH_EXTRA_OUTPUT, { "CC": self.missing })
DKbuild.include172 # We still need to detect missing targets.
192 check-FORCE = $(if $(filter FORCE, $^),,$(warning FORCE prerequisite is missing))
221 # (2) - due to target missing
224 # (5) - due to missing .cmd file
243 - due to missing .cmd file, \
249 - due to target missing \
DMakefile.extrawarn174 KBUILD_CFLAGS += -Wno-missing-field-initializers
Dspelling.txt1011 mising||missing
1013 missign||missing
1016 misssing||missing
/scripts/coccinelle/locks/
Dmini_lock.cocci2 /// Find missing unlocks. This semantic match considers the specific case
3 /// where the unlock is missing from an if branch, and there is a lock
/scripts/coccinelle/api/
Dresource_size.cocci93 msg="WARNING: Suspicious code. resource_size is maybe missing with %s" % (x)
/scripts/coccinelle/iterators/
Dfor_each_child.cocci2 // Adds missing of_node_put() before return/break/goto statement within a for_each iterator for chi…