Lines Matching defs:possible
104 --list-types list the possible message types
118 'values', 'possible', 'type', and 'attr' (default
1295 NOTE: perl $^V is not modern enough to detect all possible issues.
2209 sub possible {
2210 my ($possible, $line) = @_;
2230 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
2231 if ($possible !~ $notPermitted) {
2233 $possible =~ s/\s*$Storage\s*//g;
2234 $possible =~ s/\s*$Sparse\s*//g;
2235 if ($possible =~ /^\s*$/) {
2237 } elsif ($possible =~ /\s/) {
2238 $possible =~ s/\s*$Type\s*//g;
2239 for my $modifier (split(' ', $possible)) {
2241 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
2247 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
2248 push(@typeListFile, $possible);
2252 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
3134 # Check if the commit log is in a possible stack dump
3161 # Reset possible stack dump if a blank line is found
3182 # possible SHA-1 matches.
3313 "8-bit UTF-8 used in possible commit log\n" . $herecurr);
3679 # lines with only strings (w/ possible termination)
3742 "code indent should use tabs where possible\n" . $herevet) &&
3951 # other possible extensions of declaration lines
3969 # other possible extensions of declaration lines
4097 possible($type, "A:" . $s);
4101 possible($1, "B:" . $s);
4106 possible($1, "C:" . $s);
4122 possible($1, "D:" . $s);
5826 "Macros starting with if should be enclosed by a do - while loop to avoid possible if/else logic defects\n" . "$herectx");
5865 "Macro argument reuse '$arg' - possible side-effects?\n" . "$herectx");
7181 "Where possible, use lockdep_assert_held instead of assertions based on spin_is_locked\n" . $herecurr);