Lines Matching defs:possible

109   --list-types               list the possible message types
124 'values', 'possible', 'type', and 'attr' (default
1382 NOTE: perl $^V is not modern enough to detect all possible issues.
2296 sub possible {
2297 my ($possible, $line) = @_;
2317 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
2318 if ($possible !~ $notPermitted) {
2320 $possible =~ s/\s*$Storage\s*//g;
2321 $possible =~ s/\s*$Sparse\s*//g;
2322 if ($possible =~ /^\s*$/) {
2324 } elsif ($possible =~ /\s/) {
2325 $possible =~ s/\s*$Type\s*//g;
2326 for my $modifier (split(' ', $possible)) {
2328 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
2334 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
2335 push(@typeListFile, $possible);
2339 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
3301 # Check if the commit log is in a possible stack dump
3324 "Prefer a maximum 75 chars per line (possible unwrapped commit description?)\n" . $herecurr);
3328 # Reset possible stack dump if a blank line is found
3379 # possible SHA-1 matches.
3452 "Use lore.kernel.org archive links when possible - see https://lore.kernel.org/lists.html\n" . $herecurr);
3516 "8-bit UTF-8 used in possible commit log\n" . $herecurr);
3886 # lines with only strings (w/ possible termination)
3949 "code indent should use tabs where possible\n" . $herevet) &&
4148 # other possible extensions of declaration lines
4166 # other possible extensions of declaration lines
4294 possible($type, "A:" . $s);
4298 possible($1, "B:" . $s);
4303 possible($1, "C:" . $s);
4319 possible($1, "D:" . $s);
6044 "Macros starting with if should be enclosed by a do - while loop to avoid possible if/else logic defects\n" . "$herectx");
6083 "Macro argument reuse '$arg' - possible side-effects?\n" . "$herectx");
7493 "Where possible, use lockdep_assert_held instead of assertions based on spin_is_locked\n" . $herecurr);