Lines Matching defs:possible

107   --list-types               list the possible message types
121 'values', 'possible', 'type', and 'attr' (default
1357 NOTE: perl $^V is not modern enough to detect all possible issues.
2271 sub possible {
2272 my ($possible, $line) = @_;
2292 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
2293 if ($possible !~ $notPermitted) {
2295 $possible =~ s/\s*$Storage\s*//g;
2296 $possible =~ s/\s*$Sparse\s*//g;
2297 if ($possible =~ /^\s*$/) {
2299 } elsif ($possible =~ /\s/) {
2300 $possible =~ s/\s*$Type\s*//g;
2301 for my $modifier (split(' ', $possible)) {
2303 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
2309 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
2310 push(@typeListFile, $possible);
2314 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
3252 # Check if the commit log is in a possible stack dump
3275 "Prefer a maximum 75 chars per line (possible unwrapped commit description?)\n" . $herecurr);
3279 # Reset possible stack dump if a blank line is found
3323 # possible SHA-1 matches.
3396 "Use lore.kernel.org archive links when possible - see https://lore.kernel.org/lists.html\n" . $herecurr);
3460 "8-bit UTF-8 used in possible commit log\n" . $herecurr);
3831 # lines with only strings (w/ possible termination)
3894 "code indent should use tabs where possible\n" . $herevet) &&
4103 # other possible extensions of declaration lines
4121 # other possible extensions of declaration lines
4249 possible($type, "A:" . $s);
4253 possible($1, "B:" . $s);
4258 possible($1, "C:" . $s);
4274 possible($1, "D:" . $s);
5994 "Macros starting with if should be enclosed by a do - while loop to avoid possible if/else logic defects\n" . "$herectx");
6033 "Macro argument reuse '$arg' - possible side-effects?\n" . "$herectx");
7394 "Where possible, use lockdep_assert_held instead of assertions based on spin_is_locked\n" . $herecurr);