Lines Matching full:find
4 # findrfuncs: find reentrant variants of functions used in an executable.
7 # to find available *_r functions and looks for non-reentrant
15 # Hacked to automatically find the executable and shared objects.
19 use File::Find;
37 find(sub {push @EXES, $File::Find::name if /\.$SO$/}, '.' );
49 find(sub {
50 return unless -f $File::Find::name;
52 open F, "<$File::Find::name"
53 or die "Can't open $File::Find::name: $!";
57 #warn "$1 => $File::Find::name\n";
58 $rfuncs{$1}->{$File::Find::name}++;