Searched refs:wanted (Results 1 - 25 of 99) sorted by relevance

1234

/macosx-10.10.1/CPAN-56/fix/
H A Dremoveemptyautodirs8 wanted => sub {},
/macosx-10.10.1/OpenSSL098-52/bin/
H A DbuildWin32.pl52 my %wanted;
142 $wanted{"$buildDir/${lib}.lib"} = "lib$bits";
144 $wanted{"$buildDir/${lib}.dll"} = "bin$bits";
145 $wanted{"$buildDir/${lib}.pdb"} = "bin$bits";
150 $wanted{"$buildDir/openssl${libsfx}.pdb"} = "lib$bits";
176 foreach my $wanted (sort(keys(%wanted))) {
177 my $base = basename($wanted);
178 my $dir = "$ENV{DSTROOT}/AppleInternal/$wanted{$wanted}";
[all...]
/macosx-10.10.1/OpenSSL098-52/src/util/
H A Dperlpath.pl12 sub wanted subroutine
/macosx-10.10.1/tcpdump-61/tcpdump/tests/
H A DTESTonce8 $wanted = $ARGV[0];
9 #print "Searching for test case $wanted\n";
12 next unless (/^$wanted/);
20 die "Can not find test $wanted\n" unless defined($input);
/macosx-10.10.1/apr-32/apr/apr/file_io/win32/
H A Dfilestat.c91 static void resolve_prot(apr_finfo_t *finfo, apr_int32_t wanted, PACL dacl) argument
99 if ((wanted & APR_FINFO_WPROT) && !worldid) {
107 if ((wanted & APR_FINFO_UPROT) && (finfo->valid & APR_FINFO_USER)) {
124 if ((wanted & APR_FINFO_GPROT) && (finfo->valid & APR_FINFO_GROUP)) {
132 if ((wanted & APR_FINFO_WPROT) && (worldid)) {
143 apr_int32_t wanted, apr_pool_t *pool)
157 | ((wanted & APR_FINFO_LINK) ? APR_OPENLINK : 0)
158 | ((wanted & (APR_FINFO_PROT | APR_FINFO_OWNER))
161 rv = apr_file_info_get(finfo, wanted, thefile);
165 else if (APR_STATUS_IS_EACCES(rv) && (wanted
142 resolve_ident(apr_finfo_t *finfo, const char *fname, apr_int32_t wanted, apr_pool_t *pool) argument
191 guess_protection_bits(apr_finfo_t *finfo, apr_int32_t wanted) argument
213 more_finfo(apr_finfo_t *finfo, const void *ufile, apr_int32_t wanted, int whatfile) argument
352 fillin_fileinfo(apr_finfo_t *finfo, WIN32_FILE_ATTRIBUTE_DATA *wininfo, int byhandle, apr_int32_t wanted) argument
[all...]
H A Ddir.c112 APR_DECLARE(apr_status_t) apr_dir_read(apr_finfo_t *finfo, apr_int32_t wanted,
213 0, wanted); local
219 if (wanted &= ~finfo->valid) {
231 rv = more_finfo(finfo, wdirname, wanted, MORE_OF_WFSPEC);
252 return more_finfo(finfo, fspec, wanted, MORE_OF_FSPEC);
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-Builder-0.80/examples/
H A DApache.pm28 my $wanted = shift;
33 return $months{$wanted};
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-Builder-0.81/examples/
H A DApache.pm27 my $wanted = shift;
32 return $months{$wanted};
/macosx-10.10.1/CPANInternal-159.1/Crypt-SSLeay-0.64/
H A DMakefile.PL70 my $wanted = prompt "Do you want to run the live tests (y/N)?", 'N';
71 $wanted =~ s/\A\s+//;
72 $wanted =~ s/\s+\z//;
74 return $wanted =~ /\Ay(?:es)?\z/i ? 1 : 0;
/macosx-10.10.1/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dfind.pl6 # sub wanted { ... }
7 # where wanted does whatever you want. $dir contains the
19 # sub wanted {
44 &File::Find::find(\&wanted, @_);
H A Dfinddepth.pl6 # sub wanted { ... }
7 # where wanted does whatever you want. $dir contains the
19 # sub wanted {
43 &File::Find::finddepth(\&wanted, @_);
/macosx-10.10.1/postfix-255/postfix/src/smtpd/
H A Dsmtpd_token.c72 int wanted; local
87 ENTER_CHAR(stack, wanted = last);
100 } else if (c == wanted) { /* closing quote etc. */
103 LEAVE_CHAR(stack, wanted);
105 ENTER_CHAR(stack, wanted = '"'); /* highest precedence */
106 } else if (c == '<' && wanted == '>') {
107 ENTER_CHAR(stack, wanted = '>'); /* lowest precedence */
/macosx-10.10.1/apr-32/apr/apr/file_io/unix/
H A Ddir.c143 apr_status_t apr_dir_read(apr_finfo_t *finfo, apr_int32_t wanted, argument
159 * about the inode number (i.e. wanted & APR_FINFO_INODE == 0).
218 wanted &= ~APR_FINFO_TYPE;
228 wanted &= ~APR_FINFO_INODE;
235 wanted &= ~APR_FINFO_INODE;
240 wanted &= ~APR_FINFO_NAME;
242 if (wanted)
255 ret = apr_stat(finfo, fspec, APR_FINFO_LINK | wanted, thedir->pool);
260 if (wanted && (ret == APR_SUCCESS || ret == APR_INCOMPLETE)) {
261 wanted
[all...]
H A Dfilestat.c75 apr_int32_t wanted)
133 apr_status_t apr_file_info_get_locked(apr_finfo_t *finfo, apr_int32_t wanted, argument
147 fill_out_finfo(finfo, &info, wanted);
148 return (wanted & ~finfo->valid) ? APR_INCOMPLETE : APR_SUCCESS;
156 apr_int32_t wanted,
170 fill_out_finfo(finfo, &info, wanted);
171 return (wanted & ~finfo->valid) ? APR_INCOMPLETE : APR_SUCCESS;
292 apr_int32_t wanted, apr_pool_t *pool)
297 if (wanted & APR_FINFO_LINK)
305 fill_out_finfo(finfo, &info, wanted);
74 fill_out_finfo(apr_finfo_t *finfo, struct_stat *info, apr_int32_t wanted) argument
[all...]
/macosx-10.10.1/apr-32/apr/apr/file_io/netware/
H A Dfilestat.c57 apr_int32_t wanted)
85 apr_status_t apr_file_info_get_locked(apr_finfo_t *finfo, apr_int32_t wanted, argument
99 fill_out_finfo(finfo, &info, wanted);
100 return (wanted & ~finfo->valid) ? APR_INCOMPLETE : APR_SUCCESS;
108 apr_int32_t wanted,
123 fill_out_finfo(finfo, &info, wanted);
124 return (wanted & ~finfo->valid) ? APR_INCOMPLETE : APR_SUCCESS;
315 apr_int32_t wanted, apr_pool_t *pool)
332 fill_out_finfo(finfo, &info, wanted);
333 if (wanted
56 fill_out_finfo(apr_finfo_t *finfo, struct stat *info, apr_int32_t wanted) argument
[all...]
/macosx-10.10.1/Libc-1044.1.2/xcodescripts/
H A Dpatch_headers_variants.pl104 sub wanted { subroutine
121 File::Find::find({wanted => \&wanted, no_chdir => 1}, File::Basename::basename($ARGV[0]));
/macosx-10.10.1/python-89/2.6/fix/
H A DEasyDialogs.py140 wanted=None,
144 wanted is the return type wanted: FSSpec, FSRef, unicode or string (default)
166 wanted=None,
170 wanted is the return type wanted: FSSpec, FSRef, unicode or string (default)
190 wanted=None,
194 wanted is the return type wanted: FSSpec, FSRef, unicode or string (default)
/macosx-10.10.1/python-89/2.7/fix/
H A DEasyDialogs.py140 wanted=None,
144 wanted is the return type wanted: FSSpec, FSRef, unicode or string (default)
166 wanted=None,
170 wanted is the return type wanted: FSSpec, FSRef, unicode or string (default)
190 wanted=None,
194 wanted is the return type wanted: FSSpec, FSRef, unicode or string (default)
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/sfio/
H A Dsfmode.c362 int _sfmode(reg Sfio_t* f, reg int wanted, reg int local) argument
364 int _sfmode(f, wanted, local)
366 reg int wanted; /* desired mode */
376 if(wanted&SF_SYNCED) /* for (SF_SYNCED|SF_READ) stream, just junk data */
377 { wanted &= ~SF_SYNCED;
424 if(f->disc == _Sfudisc && wanted == SF_WRITE &&
442 wanted &= SF_RDWR;
450 if(wanted == 0)
453 if(wanted != (int)(f->mode&SF_RDWR) && !(f->flags&wanted) )
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/scripts/
H A Dbcsh.sh660 wanted="`expr \"$i\" : '-\([0-9][0-9]*\).*'`"
662 i="`tail -n $wanted $histfile | sed -e "1q"`"
667 # find which number command is wanted
669 wanted="`expr \"$i\" : '\([0-9][0-9]*\).*'`"
671 i="`grep -n . $histfile | grep \"^$wanted\"`"
672 i="`expr \"$i\" : \"${wanted}.\(.*\)\"`"
676 # find which 'command-contains' match is wanted
680 wanted="`expr \"$i\" : '?{\(.*\)}.*'`"
684 wanted="`expr \"$i\" : '?\(.*\):.*'`"
688 wanted
[all...]
/macosx-10.10.1/apr-32/apr/apr/file_io/os2/
H A Dfilestat.c89 APR_DECLARE(apr_status_t) apr_file_info_get(apr_finfo_t *finfo, apr_int32_t wanted,
135 apr_int32_t wanted, apr_pool_t *cont)
149 if (wanted & APR_FINFO_NAME) {
167 if (wanted & APR_FINFO_NAME) {
175 return (wanted & ~finfo->valid) ? APR_INCOMPLETE : APR_SUCCESS;
/macosx-10.10.1/CPANInternal-159.1/Pod-ProjectDocs-0.40/lib/Pod/ProjectDocs/
H A DDocManager.pm45 my $wanted = sub {
74 File::Find::find( { no_chdir => 1, wanted => $wanted }, $dir );
/macosx-10.10.1/apr-32/apr/apr/include/arch/win32/
H A Dapr_arch_file_io.h138 int byhandle, apr_int32_t wanted);
142 apr_int32_t wanted, int whatfile);
/macosx-10.10.1/dtrace-147/test/cmd/scripts/
H A Ddtest.pl58 sub wanted subroutine
171 find(\&wanted, $arg);
182 find(\&wanted, "$defdir/common") if (scalar(@ARGV) == 0);
183 find(\&wanted, "$defdir/$MACH") if (scalar(@ARGV) == 0);
/macosx-10.10.1/llvmCore-3425.0.34/utils/
H A DUpdateCMakeLists.pl116 find({ wanted => \&ProcessFile, follow => 1 }, '.');

Completed in 250 milliseconds

1234