Searched refs:fh (Results 1 - 25 of 135) sorted by relevance

123456

/freebsd-current/contrib/netbsd-tests/usr.bin/xlint/lint1/
H A Dd_typename_as_var.c6 } fh; typedef in typeref:struct:__anon5263
9 fh h;
/freebsd-current/tools/tools/vt/mkkfont/
H A Dmkkfont.c41 print_glyphs(struct font_header *fh) argument
46 gbytes = howmany(fh->fh_width, 8) * fh->fh_height;
47 glyph_count = be32toh(fh->fh_glyph_count);
75 print_mappings(struct font_header *fh, int map_index) argument
81 nmappings = be32toh(fh->fh_map_count[map_index]);
108 print_info(struct font_header *fh) argument
117 fh->fh_width, fh->fh_height);
121 if (fh
140 struct font_header fh; local
[all...]
/freebsd-current/sys/arm/arm/
H A Dfiq.c85 fiq_claim(struct fiqhandler *fh) argument
91 if (fh->fh_size > 0x100)
108 if (fh->fh_regs != NULL)
109 fiq_setregs(fh->fh_regs);
111 TAILQ_INSERT_HEAD(&fiqhandler_stack, fh, fh_list);
114 fiq_installhandler(fh->fh_func, fh->fh_size);
130 fiq_release(struct fiqhandler *fh) argument
142 if (fh == TAILQ_FIRST(&fiqhandler_stack)) {
143 if (fh
[all...]
/freebsd-current/contrib/file/python/
H A Dsetup.py7 with open('README.md', 'r') as fh:
8 long_description = fh.read()
/freebsd-current/tests/sys/vm/stack/
H A Dstack_dlopen_exec_test.c21 void *fh; local
24 fh = dlopen("libsoxstack.so", RTLD_LAZY);
25 ATF_REQUIRE(fh != NULL);
26 socheckstack = dlsym(fh, "checkstack");
/freebsd-current/crypto/openssl/test/recipes/
H A D15-test_mp_rsa.t112 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;
H A D02-test_ordinals.t28 open(my $fh, '<', $filename);
29 while (my $line = <$fh>) {
58 close($fh);
/freebsd-current/contrib/ntp/scripts/lib/NTP/
H A DUtil.pm42 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...]
/freebsd-current/crypto/openssl/util/
H A Dmk-fipsmodule-cnf.pl28 open my $fh, "<:raw", $module_name or die "Trying to open $module_name: $!";
29 read $fh, my $data, $module_size or die "Trying to read $module_name: $!";
30 close $fh;
/freebsd-current/crypto/openssl/external/perl/Text-Template-1.56/t/
H A Dtaint.t32 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;
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBCommandReturnObject.cpp111 size_t SBCommandReturnObject::PutOutput(FILE *fh) { argument
112 LLDB_INSTRUMENT_VA(this, fh);
113 if (fh) {
116 return ::fprintf(fh, "%s", GetOutput());
135 size_t SBCommandReturnObject::PutError(FILE *fh) { argument
136 LLDB_INSTRUMENT_VA(this, fh);
137 if (fh) {
140 return ::fprintf(fh, "%s", GetError());
242 void SBCommandReturnObject::SetImmediateOutputFile(FILE *fh) { argument
243 LLDB_INSTRUMENT_VA(this, fh);
248 SetImmediateErrorFile(FILE *fh) argument
254 SetImmediateOutputFile(FILE *fh, bool transfer_ownership) argument
261 SetImmediateErrorFile(FILE *fh, bool transfer_ownership) argument
[all...]
/freebsd-current/usr.bin/sort/
H A Dfile.c788 file_header_init(struct file_header **fh, const char *fn, size_t file_pos) argument
791 if (fh && fn) {
794 *fh = sort_malloc(sizeof(struct file_header));
795 (*fh)->file_pos = file_pos;
796 (*fh)->fr = file_reader_init(fn);
797 if ((*fh)->fr == NULL) {
801 line = file_reader_readline((*fh)->fr);
803 file_reader_free((*fh)->fr);
804 (*fh)->fr = NULL;
805 (*fh)
817 file_header_close(struct file_header **fh) argument
837 file_header_swap(struct file_header **fh, size_t i1, size_t i2) argument
853 file_header_heap_swim(struct file_header **fh, size_t indx) argument
873 file_header_heap_sink(struct file_header **fh, size_t indx, size_t size) argument
903 file_header_list_rearrange_from_header(struct file_header **fh, size_t size) argument
913 file_header_list_push(struct file_header *f, struct file_header **fh, size_t size) argument
929 file_header_print(struct file_header *fh, FILE *f_out, struct last_printed *lp) argument
949 file_header_read_next(struct file_header *fh) argument
976 file_headers_merge(size_t fnum, struct file_header **fh, FILE *f_out) argument
1011 struct file_header **fh; local
[all...]
/freebsd-current/tools/tools/kdrv/
H A DKernelDriver149 set fh [open $fname r];
161 while {[gets $fh line] >= 0} {
213 while {[gets $fh line] >= 0} {
222 close $fh;
395 set fh [open $fname a];
398 puts $fh "\#\# driver: $Drv(driver)";
399 puts $fh "\# $Drv(description)";
401 puts $fh $l;
403 puts $fh "\#\# enddriver";
404 close $fh;
[all...]
/freebsd-current/tools/regression/priv/
H A Dpriv_vfs_fhstatfs.c47 static fhandle_t fh; variable
56 if (getfh(fpath, &fh) < 0) {
69 error = fhstatfs(&fh, &sf);
H A Dpriv_vfs_fhstat.c48 static fhandle_t fh; variable
57 if (getfh(fpath, &fh) < 0) {
70 error = fhstat(&fh, &sb);
H A Dpriv_vfs_getfh.c58 fhandle_t fh; local
61 error = getfh(fpath, &fh);
H A Dpriv_vfs_fhopen.c48 static fhandle_t fh; variable
57 if (getfh(fpath, &fh) < 0) {
69 fd = fhopen(&fh, O_RDONLY);
/freebsd-current/contrib/smbfs/lib/smb/
H A Dfile.c55 smb_read(struct smb_ctx *ctx, smbfh fh, off_t offset, size_t count, char *dst) argument
59 rwrq.ioc_fh = fh;
69 smb_write(struct smb_ctx *ctx, smbfh fh, off_t offset, size_t count, argument
74 rwrq.ioc_fh = fh;
/freebsd-current/crypto/heimdal/lib/roken/
H A Dget_window_size.c104 intptr_t fh = 0; local
107 fh = _get_osfhandle(fd);
108 if (fh != (intptr_t) INVALID_HANDLE_VALUE &&
109 GetConsoleScreenBufferInfo((HANDLE) fh, &sb_info)) {
/freebsd-current/tools/tools/drm/
H A Dgen-drm_pciids15 open(my $fh, '<', $header) or die "Can't open Linux header: $!\n";
23 while (my $line = <$fh>) {
39 close($fh);
47 open(my $fh, '<', $header) or die "Can't open FreeBSD header: $!\n";
55 while (my $line = <$fh>) {
73 close($fh);
81 open(my $fh, '<', $header) or die "Can't open PCI IDs database: $!\n";
87 while (my $line = <$fh>) {
109 close($fh);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandReturnObject.h52 size_t PutOutput(FILE *fh);
66 size_t PutError(FILE *fh);
93 void SetImmediateOutputFile(FILE *fh);
98 void SetImmediateErrorFile(FILE *fh);
103 void SetImmediateOutputFile(FILE *fh, bool transfer_ownership);
108 void SetImmediateErrorFile(FILE *fh, bool transfer_ownership);
/freebsd-current/contrib/libedit/
H A Dmakelist39 USAGE="Usage: $0 -h|-fc|-fh|-bh <filenames>"
67 # XXX: need a space between name and prototype so that -fc and -fh
125 -fh)
/freebsd-current/sys/fs/nfsserver/
H A Dnfs_fha_new.h72 u_int64_t fh; member in struct:fha_hash_entry
88 u_int64_t fh; member in struct:fha_info
/freebsd-current/tools/build/
H A Dfreebsd-yeet.pl62 open my $fh, '<', $_ or die "Can't open $fn: $!\n";
64 my $file = <$fh>;
65 close $fh;
/freebsd-current/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzpl_export.c35 zpl_encode_fh(struct inode *ip, __u32 *fh, int *max_len, struct inode *parent) argument
38 zpl_encode_fh(struct dentry *dentry, __u32 *fh, int *max_len, int connectable)
53 fid = (fid_t *)fh;
72 zpl_fh_to_dentry(struct super_block *sb, struct fid *fh, argument
75 fid_t *fid = (fid_t *)fh;

Completed in 170 milliseconds

123456