Lines Matching defs:possible
99 --list-types list the possible message types
113 'values', 'possible', 'type', and 'attr' (default
1119 NOTE: perl $^V is not modern enough to detect all possible issues.
2027 sub possible {
2028 my ($possible, $line) = @_;
2048 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
2049 if ($possible !~ $notPermitted) {
2051 $possible =~ s/\s*$Storage\s*//g;
2052 $possible =~ s/\s*$Sparse\s*//g;
2053 if ($possible =~ /^\s*$/) {
2055 } elsif ($possible =~ /\s/) {
2056 $possible =~ s/\s*$Type\s*//g;
2057 for my $modifier (split(' ', $possible)) {
2059 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
2065 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
2066 push(@typeListFile, $possible);
2070 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
2852 # Check if the commit log is in a possible stack dump
2879 # Reset possible stack dump if a blank line is found
3005 "8-bit UTF-8 used in possible commit log\n" . $herecurr);
3357 # lines with only strings (w/ possible termination)
3410 "code indent should use tabs where possible\n" . $herevet) &&
3599 # other possible extensions of declaration lines
3617 # other possible extensions of declaration lines
3742 possible($type, "A:" . $s);
3746 possible($1, "B:" . $s);
3751 possible($1, "C:" . $s);
3767 possible($1, "D:" . $s);
5445 "Macros starting with if should be enclosed by a do - while loop to avoid possible if/else logic defects\n" . "$herectx");
5484 "Macro argument reuse '$arg' - possible side-effects?\n" . "$herectx");
6740 "Where possible, use lockdep_assert_held instead of assertions based on spin_is_locked\n" . $herecurr);