Searched refs:fh (Results 476 - 500 of 535) sorted by relevance

<<11121314151617181920>>

/openbsd-current/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/Parse/CPAN/
H A DMeta.pm122 open my $fh, "<:raw", "$_[0]" ## no critic
124 my $content = do { local $/; <$fh> };
/openbsd-current/gnu/usr.bin/perl/dist/Tie-File/t/
H A D30_defer.t307 local *FH = $o->{fh};
/openbsd-current/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/
H A DLocale.pm211 open(my $fh, "<", encode(locale_fs => $uni_filename))
213 binmode($fh, ":encoding(locale)");
/openbsd-current/gnu/usr.bin/perl/lib/
H A Dperl5db.t251 my $fh = File::Temp->new;
252 $self->_tempprog($fh);
253 print $fh $$prog;
254 $prog = $fh->filename;
/openbsd-current/sys/dev/pci/drm/radeon/
H A Dr600_dpm.h142 int r600_calculate_at(u32 t, u32 h, u32 fh, u32 fl, u32 *tl, u32 *th);
H A Dr600_dpm.c221 int r600_calculate_at(u32 t, u32 h, u32 fh, u32 fl, u32 *tl, u32 *th) argument
226 if ((fl == 0) || (fh == 0) || (fl > fh))
229 k = (100 * fh) / fl;
/openbsd-current/gnu/usr.bin/perl/cpan/DB_File/t/
H A Ddb-btree.t72 my $fh = gensym ;
73 open ($fh, ">$filename") || die "Cannot open $filename: $!" ;
74 my $real_stdout = select($fh) ;
75 return bless [$fh, $real_stdout ] ;
H A Ddb-recno.t53 my $fh = gensym ;
54 open ($fh, ">$filename") || die "Cannot open $filename: $!" ;
55 my $real_stdout = select($fh) ;
56 return bless [$fh, $real_stdout ] ;
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dstat.t484 open my $fh, "test.pl";
485 stat *$fh{IO};
H A Dtie.t663 open my $fh, '>', $file or die "Can't create $file: $!\n";
664 print $fh $str;
665 close $fh;
/openbsd-current/gnu/usr.bin/perl/t/
H A DTEST1007 open my $fh, '/proc/cpuinfo' or warn "$!: /proc/cpuinfo\n";
1008 @platform = grep /name|cpu/, <$fh>;
/openbsd-current/gnu/usr.bin/perl/cpan/File-Path/t/
H A DPath.t30 if (open my $fh, curdir()) {
31 my ($perm) = (stat($fh))[2];
33 eval { $fchmod_supported = chmod( $perm, $fh); };
/openbsd-current/sys/nfs/
H A Dnfs_vfsops.c591 error = copyin(args->fh, nfh, args->fhsize);
602 args->fh = nfh;
678 error = nfs_nget(mp, (nfsfh_t *)argp->fh, argp->fhsize, &np);
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/
H A DShell.pm630 my $fh = FileHandle->new($file) or
636 $content = <$fh>;
1252 my($fh) = FileHandle->new(">$to") or Carp::croak "Can't open >$to: $!";
1253 $fh->print(
1273 $fh->close;
/openbsd-current/gnu/usr.bin/perl/cpan/podlators/lib/Pod/
H A DText.pm728 my $fh = $parser->output_fh ();
729 close $fh;
759 my $fh = $self->output_fh ();
760 my $oldfh = select $fh;
763 print $fh '';
/openbsd-current/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/
H A DMM_Unix.pm1545 if (open( my $fh, '<', $file )) {
1546 while (<$fh>) {
1552 close $fh;
2944 open(my $fh, '<', $parsefile) or die "Could not open '$parsefile': $!";
2945 binmode $fh;
2950 while (<$fh>) {
2970 close $fh;
3011 open(my $fh, '<', $parsefile) or die "Could not open '$parsefile': $!";
3013 while (<$fh>) {
3030 close $fh;
[all...]
/openbsd-current/gnu/usr.bin/binutils/bfd/
H A Decofflink.c65 info comes from the file header record (fh-fBigendian). */
122 info comes from the file header record (fh-fBigendian). */
708 struct string_hash_entry *fh;
724 fh = string_hash_lookup (&ainfo->fdr_hash, lookup, TRUE, TRUE);
726 if (fh == (struct string_hash_entry *) NULL)
729 if (fh->val != -1)
731 input_debug->ifdmap[i] = fh->val;
739 fh->val = output_symhdr->ifdMax + copied;
705 struct string_hash_entry *fh; local
/openbsd-current/gnu/usr.bin/binutils-2.17/bfd/
H A Decofflink.c65 info comes from the file header record (fh-fBigendian). */
122 info comes from the file header record (fh-fBigendian). */
709 struct string_hash_entry *fh;
725 fh = string_hash_lookup (&ainfo->fdr_hash, lookup, TRUE, TRUE);
727 if (fh == (struct string_hash_entry *) NULL)
730 if (fh->val != -1)
732 input_debug->ifdmap[i] = fh->val;
740 fh->val = output_symhdr->ifdMax + copied;
706 struct string_hash_entry *fh; local
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN/lib/
H A DCPAN.pm512 my($fh,$mode) = @_;
514 return flock $fh, $mode;
719 my $fh = FileHandle->new($lockfile) or
721 my $otherpid = <$fh>;
722 my $otherhost = <$fh>;
723 $fh->close;
850 my $fh;
851 unless ($fh = FileHandle->new("+>>$lockfile")) {
870 while (!CPAN::_flock($fh, LOCK_EX|LOCK_NB)) {
879 seek $fh,
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/
H A DMeta.pm413 open my $fh, ">$layer", $file
416 print {$fh} $data;
417 close $fh
/openbsd-current/gnu/usr.bin/perl/Porting/
H A DupdateAUTHORS.pm216 open my $fh, "-|", $cmd
218 binmode($fh);
219 while (defined(my $line= <$fh>)) {
/openbsd-current/sbin/mount_nfs/
H A Dmount_nfs.c515 nfsargsp->fh = nfhret.nfh;
/openbsd-current/gnu/usr.bin/perl/cpan/Term-ReadKey/
H A DReadKey.pm.PL375 my $fh = normalizehandle( ( @_ > 1 ? $_[1] : \*STDIN ) );
381 SetReadMode($CurrentMode, $fh);
/openbsd-current/sys/sys/
H A Dmount.h116 u_char *fh; /* File handle to be mounted */ member in struct:nfs_args
117 int fhsize; /* Size, in bytes, of fh */
/openbsd-current/usr.sbin/amd/amd/
H A Dnfs_ops.c125 dlog("fh cache gives fp %#x, fs %s", fp2, fp2->fh_path);
127 dlog("fh cache search failed");
500 nfs_args.fh = (void *)fhp->fhs_fhandle;

Completed in 190 milliseconds

<<11121314151617181920>>