HomeSort by: relevance | last modified time | path
    Searched refs:fh (Results 1 - 25 of 236) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/mpl/bind/dist/util/
bindkeys.pl 21 open(my $fh, '<', $fn) or die "cannot open file $ARGV[1]\n";
22 while (<$fh>) {
27 close($fh);
  /src/external/gpl3/gdb/dist/gnulib/import/
socket.c 38 SOCKET fh; local
44 fh = WSASocket (domain, type, protocol, NULL, 0, 0);
46 if (fh == INVALID_SOCKET)
52 return SOCKET_TO_FD (fh);
accept.c 43 SOCKET fh = accept (sock, addr, addrlen); local
44 if (fh == INVALID_SOCKET)
50 return SOCKET_TO_FD (fh);
  /src/external/gpl3/gdb.old/dist/gnulib/import/
socket.c 38 SOCKET fh; local
44 fh = WSASocket (domain, type, protocol, NULL, 0, 0);
46 if (fh == INVALID_SOCKET)
52 return SOCKET_TO_FD (fh);
accept.c 43 SOCKET fh = accept (sock, addr, addrlen); local
44 if (fh == INVALID_SOCKET)
50 return SOCKET_TO_FD (fh);
  /src/external/ibm-public/postfix/dist/src/tls/
tls_prng_file.c 15 /* ssize_t tls_prng_file_read(fh, length)
16 /* TLS_PRNG_SRC *fh;
19 /* int tls_prng_file_close(fh)
20 /* TLS_PRNG_SRC *fh;
88 TLS_PRNG_SRC *fh; local
96 fh = (TLS_PRNG_SRC *) mymalloc(sizeof(*fh));
97 fh->fd = fd;
98 fh->name = mystrdup(name);
99 fh->timeout = timeout
    [all...]
  /src/external/apache2/llvm/dist/clang/utils/analyzer/
update_plist_test.pl 14 my $fh = File::Temp->new();
15 my $filename = $fh->filename;
16 $fh->unlink_on_destroy(1);
22 print $fh $_;
40 print $fh "// CHECK: ";
44 print $fh "// CHECK-NEXT: ";
46 print $fh $_;
49 close ($fh);
  /src/external/mpl/dhcp/dist/common/
fddi.c 53 struct fddi_header fh; local
57 memcpy (fh.fddi_dhost, &to -> hbuf [1],
58 sizeof (fh.fddi_dhost));
59 memcpy (fh.fddi_shost,
60 &interface -> hw_address.hbuf [1], sizeof (fh.fddi_shost));
61 fh.fddi_fc = FDDIFC_LLC_ASYNC;
62 memcpy (&buf [*bufix], &fh, sizeof fh);
63 *bufix += sizeof fh;
83 struct fddi_header fh; local
    [all...]
  /src/usr.bin/crunch/crunchide/
exec_coff.c 60 struct coff_filehdr fh; local
71 if (read(fd, &fh, sizeof fh) != sizeof fh)
74 if (COFF_BADMAG(&fh))
  /src/sys/arch/arm/arm/
fiq.c 90 fiq_claim(struct fiqhandler *fh)
96 if (fh->fh_size > 0x100)
113 if (fh->fh_regs != NULL)
114 fiq_setregs(fh->fh_regs);
116 TAILQ_INSERT_HEAD(&fiqhandler_stack, fh, fh_list);
119 fiq_installhandler(fh->fh_func, fh->fh_size);
135 fiq_release(struct fiqhandler *fh)
147 if (fh == TAILQ_FIRST(&fiqhandler_stack)) {
148 if (fh->fh_regs != NULL
    [all...]
  /src/crypto/external/apache2/openssl/dist/demos/http3/
gen_nghttp3.pl 13 open(my $fh, '>>', './build.info') or die "Could not open build.info - $!";
14 flock($fh, LOCK_EX) or die "Could not lock build.info - $!";
35 close($fh);
  /src/crypto/external/bsd/openssl.old/dist/test/recipes/
90-test_shlibload.t 36 (my $fh, my $filename) = tempfile();
39 ok(check_atexit($fh));
41 ($fh, $filename) = tempfile();
44 ok(check_atexit($fh));
46 ($fh, $filename) = tempfile();
49 ok(check_atexit($fh));
51 ($fh, $filename) = tempfile();
54 ok(check_atexit($fh));
56 ($fh, $filename) = tempfile();
59 ok(!check_atexit($fh));
    [all...]
15-test_mp_rsa.t 97 open(my $fh, "<", $cleartext) or return 0;
98 binmode $fh;
99 read($fh, $msg, 10240);
100 close $fh;
101 open($fh, "<", "rsamptest.dec") or return 0;
102 binmode $fh;
103 read($fh, $dec, 10240);
104 close $fh;
  /src/external/gpl3/autoconf/dist/lib/Autom4te/
XFile.pm 33 $fh = new Autom4te::XFile;
34 $fh->open ("< file");
35 # No need to check $FH: we died if open failed.
36 print <$fh>;
37 $fh->close;
40 $fh = new Autom4te::XFile "> file";
41 # No need to check $FH: we died if new failed.
42 print $fh "bar\n";
43 $fh->close;
45 $fh = new Autom4te::XFile "file", "r"
    [all...]
  /src/external/bsd/file/dist/python/
setup.py 7 with open('README.md', 'r') as fh:
8 long_description = fh.read()
  /src/external/bsd/nvi/dist/perl_scripts/
make.pl 2 my ($fh) = shift;
4 while(<$fh>) {
14 local (*FH);
15 open FH, "make 2>&1 |";
16 ::push_tags(\*FH);
17 close FH;
  /src/external/lgpl3/mpfr/dist/tests/
tfpif.c 42 FILE *fh; local
64 fh = fopen (filenameCompressed, "w");
65 if (fh == NULL)
79 status = mpfr_fpif_export (fh, x[i]);
82 fclose (fh);
91 if (fclose (fh) != 0)
99 fh = fopen (filenameCompressed, "r");
100 if (fh == NULL)
121 mpfr_fpif_import (y, fh);
152 fclose (fh);
219 FILE *fh; local
    [all...]
  /src/external/bsd/am-utils/dist/conf/autofs/
autofs_linux.c 143 autofs_fh_t *fh; local
156 fh = ALLOC(autofs_fh_t);
157 fh->fd = fds[0];
158 fh->kernelfd = fds[1];
159 fh->ioctlfd = -1;
160 fh->pending_mounts = NULL;
161 fh->pending_umounts = NULL;
163 mp->am_autofs_fh = fh;
172 autofs_fh_t *fh = mp->am_autofs_fh; local
175 close(fh->kernelfd)
200 autofs_fh_t *fh = mp->am_autofs_fh; local
211 autofs_fh_t *fh = mp->am_autofs_fh; local
229 autofs_fh_t *fh = mp->am_autofs_fh; local
322 autofs_fh_t *fh = mp->am_autofs_fh; local
346 autofs_fh_t *fh; local
391 autofs_fh_t *fh; local
503 autofs_fh_t *fh; local
755 autofs_fh_t *fh = mp->am_parent->am_autofs_fh; local
784 autofs_fh_t *fh = mp->am_parent->am_autofs_fh; local
809 autofs_fh_t *fh = mp->am_parent->am_autofs_fh; local
842 autofs_fh_t *fh = mp->am_parent->am_autofs_fh; local
882 autofs_fh_t *fh = mp->am_autofs_fh; local
893 autofs_fh_t *fh = mp->am_autofs_fh; local
    [all...]
  /src/sys/arch/x68k/dev/
ite_tv.c 271 short fh; local
282 for (fh = 0; fh < FONTHEIGHT; fh++, p += ROWBYTES)
285 for (fh = 0; fh < FONTHEIGHT; fh++, p += ROWBYTES)
311 short fh, hi, lo; local
323 for (fh = 0; fh < FONTHEIGHT; fh++, p += ROWBYTES
339 short fh, hi, lo; local
367 short fh, hi, lo; local
416 short fh, hi, lo; local
452 short fh, hi, lo; local
485 short fh, hi, lo; local
521 short fh, hi, lo; local
568 short fh, hi, lo; local
620 short fh; local
662 short fh; local
729 short fh; local
744 short fh; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/recipes/
15-test_mp_rsa.t 112 open(my $fh, "<", $cleartext) or return 0;
113 binmode $fh;
114 read($fh, $msg, 10240);
115 close $fh;
116 open($fh, "<", $decrypted ) or return 0;
117 binmode $fh;
118 read($fh, $dec, 10240);
119 close $fh;
95-test_external_cf_quiche.t 36 open my $fh, '<', "server.pid"
38 $serverpid = <$fh>;
39 close($fh);
  /src/crypto/external/bsd/openssl/dist/test/recipes/
15-test_mp_rsa.t 112 open(my $fh, "<", $cleartext) or return 0;
113 binmode $fh;
114 read($fh, $msg, 10240);
115 close $fh;
116 open($fh, "<", $decrypted ) or return 0;
117 binmode $fh;
118 read($fh, $dec, 10240);
119 close $fh;
  /src/external/bsd/ntp/dist/scripts/lib/NTP/
Util.pm 42 open my $fh, $cmd or croak "Could not start ntpq: $!";
44 while (<$fh>) {
66 close $fh or croak "running ntpq failed: $! (exit status $?)";
99 open my $fh, $cmd or croak "Could not start ntpq: $!";
101 <$fh> for 1 .. 2;
105 while (<$fh>) {
110 defined ($_ = <$fh>) or last;
124 close $fh or croak "running ntpq failed: $! (exit status $?)";
133 open my $fh, $cmd or croak "Could not start sntp: $!";
136 while (<$fh>) {
    [all...]
  /src/lib/libc/sys/
statvfs.c 52 fhstatvfs(const void *fh, size_t fh_size, struct statvfs *st)
54 return fhstatvfs1(fh, fh_size, st, ST_WAIT);
  /src/crypto/external/apache2/openssl/dist/external/perl/Text-Template-1.56/t/
taint.t 32 open my $fh, '>', $file or die "Couldn't write temporary file $file: $!";
33 print $fh $template, "\n";
34 close $fh or die "Couldn't finish temporary file $file: $!";
82 open $fh, '<', $file or die "Couldn't open $file for reading: $!; aborting";
83 should_fail TYPE => 'filehandle', SOURCE => $fh;
84 close $fh;
86 open $fh, '<', $file or die "Couldn't open $file for reading: $!; aborting";
87 should_work TYPE => 'filehandle', SOURCE => $fh, UNTAINT => 1;
88 close $fh;

Completed in 43 milliseconds

1 2 3 4 5 6 7 8 910