Symbol: hf
crypto/krb5/src/windows/kfwlogon/kfwlogon.c
470
HANDLE hf = NULL;
crypto/krb5/src/windows/kfwlogon/kfwlogon.c
505
hf = CreateFile(filename, FILE_ALL_ACCESS, 0, NULL, OPEN_EXISTING,
crypto/krb5/src/windows/kfwlogon/kfwlogon.c
507
if (hf == INVALID_HANDLE_VALUE) {
crypto/krb5/src/windows/kfwlogon/kfwlogon.c
511
CloseHandle(hf);
crypto/krb5/src/windows/kfwlogon/kfwlogon.c
576
HANDLE hf = NULL;
crypto/krb5/src/windows/kfwlogon/kfwlogon.c
584
hf = CreateFile(lpszCmdLine, GENERIC_READ | DELETE, 0, NULL, OPEN_EXISTING,
crypto/krb5/src/windows/kfwlogon/kfwlogon.c
586
if (hf == INVALID_HANDLE_VALUE) {
crypto/krb5/src/windows/kfwlogon/kfwlogon.c
590
CloseHandle(hf);
crypto/openssl/ssl/ssl_lib.c
4801
int (*hf)(SSL *) = sc->handshake_func;
crypto/openssl/ssl/ssl_lib.c
4811
if (hf == sm->ssl_connect)
crypto/openssl/ssl/ssl_lib.c
4813
else if (hf == sm->ssl_accept)
stand/kboot/kboot/hostfs.c
101
host_close(hf->hf_fd);
stand/kboot/kboot/hostfs.c
102
hostfs_free(hf);
stand/kboot/kboot/hostfs.c
111
hostfs_file *hf = f->f_fsdata;
stand/kboot/kboot/hostfs.c
114
sz = host_read(hf->hf_fd, start, size);
stand/kboot/kboot/hostfs.c
125
hostfs_file *hf = f->f_fsdata;
stand/kboot/kboot/hostfs.c
139
err = host_llseek(hf->hf_fd, offh, offl, &res, whence);
stand/kboot/kboot/hostfs.c
156
hostfs_file *hf = f->f_fsdata;
stand/kboot/kboot/hostfs.c
158
if (host_fstat(hf->hf_fd, &ksb) < 0)
stand/kboot/kboot/hostfs.c
192
hostfs_file *hf = f->f_fsdata;
stand/kboot/kboot/hostfs.c
196
if (hf->hf_curdent == NULL) {
stand/kboot/kboot/hostfs.c
197
dentlen = host_getdents64(hf->hf_fd, hf->hf_dents, sizeof(hf->hf_dents));
stand/kboot/kboot/hostfs.c
200
hf->hf_dentlen = dentlen;
stand/kboot/kboot/hostfs.c
201
hf->hf_curdent = hf->hf_dents;
stand/kboot/kboot/hostfs.c
203
dent = (struct host_dirent64 *)hf->hf_curdent;
stand/kboot/kboot/hostfs.c
208
hf->hf_curdent += dent->d_reclen;
stand/kboot/kboot/hostfs.c
209
if (hf->hf_curdent >= hf->hf_dents + hf->hf_dentlen) {
stand/kboot/kboot/hostfs.c
210
hf->hf_curdent = NULL;
stand/kboot/kboot/hostfs.c
211
hf->hf_dentlen = 0;
stand/kboot/kboot/hostfs.c
35
hostfs_file *hf;
stand/kboot/kboot/hostfs.c
37
hf = malloc(sizeof(*hf));
stand/kboot/kboot/hostfs.c
38
if (hf != NULL)
stand/kboot/kboot/hostfs.c
39
memset(hf, 0, sizeof(*hf));
stand/kboot/kboot/hostfs.c
40
return (hf);
stand/kboot/kboot/hostfs.c
44
hostfs_free(hostfs_file *hf)
stand/kboot/kboot/hostfs.c
46
free(hf);
stand/kboot/kboot/hostfs.c
52
hostfs_file *hf;
stand/kboot/kboot/hostfs.c
76
hf = hostfs_alloc();
stand/kboot/kboot/hostfs.c
77
hf->hf_fd = host_open(path, HOST_O_RDONLY, 0);
stand/kboot/kboot/hostfs.c
78
if (hf->hf_fd < 0) {
stand/kboot/kboot/hostfs.c
79
hostfs_free(hf);
stand/kboot/kboot/hostfs.c
83
if (host_fstat(hf->hf_fd, &ksb) < 0) {
stand/kboot/kboot/hostfs.c
84
hostfs_free(hf);
stand/kboot/kboot/hostfs.c
87
if (S_ISDIR(hf->hf_fd)) {
stand/kboot/kboot/hostfs.c
88
hf->hf_type = dir;
stand/kboot/kboot/hostfs.c
90
hf->hf_type = regular;
stand/kboot/kboot/hostfs.c
92
f->f_fsdata = hf;
stand/kboot/kboot/hostfs.c
99
hostfs_file *hf = f->f_fsdata;
sys/dev/bwn/if_bwn.c
2207
uint64_t hf;
sys/dev/bwn/if_bwn.c
2255
hf = bwn_hf_read(mac);
sys/dev/bwn/if_bwn.c
2257
hf |= BWN_HF_GPHY_SYM_WORKAROUND;
sys/dev/bwn/if_bwn.c
2259
hf |= BWN_HF_PAGAINBOOST_OFDM_ON;
sys/dev/bwn/if_bwn.c
2261
hf |= BWN_HF_GPHY_DC_CANCELFILTER;
sys/dev/bwn/if_bwn.c
2265
hf |= BWN_HF_FORCE_VCO_RECALC;
sys/dev/bwn/if_bwn.c
2267
hf |= BWN_HF_4318_TSSI;
sys/dev/bwn/if_bwn.c
2270
hf |= BWN_HF_SLOWCLOCK_REQ_OFF;
sys/dev/bwn/if_bwn.c
2272
hf |= BWN_HF_PCI_SLOWCLOCK_WORKAROUND;
sys/dev/bwn/if_bwn.c
2273
hf &= ~BWN_HF_SKIP_CFP_UPDATE;
sys/dev/bwn/if_bwn.c
2274
bwn_hf_write(mac, hf);
sys/dev/bwn/if_bwn.c
3563
uint64_t hf;
sys/dev/bwn/if_bwn.c
3572
hf = bwn_hf_read(mac);
sys/dev/bwn/if_bwn.c
3574
hf |= BWN_HF_BT_COEXISTALT;
sys/dev/bwn/if_bwn.c
3576
hf |= BWN_HF_BT_COEXIST;
sys/dev/bwn/if_bwn.c
3577
bwn_hf_write(mac, hf);
sys/dev/bwn/if_bwn_phy_g.c
578
uint64_t hf;
sys/dev/bwn/if_bwn_phy_g.c
585
hf = bwn_hf_read(mac) & ~BWN_HF_UCODE_ANTDIV_HELPER;
sys/dev/bwn/if_bwn_phy_g.c
586
bwn_hf_write(mac, hf);
sys/dev/bwn/if_bwn_phy_g.c
623
hf |= BWN_HF_UCODE_ANTDIV_HELPER;
sys/dev/bwn/if_bwn_phy_g.c
624
bwn_hf_write(mac, hf);
sys/dev/bwn/if_bwn_phy_lp.c
2695
static const uint8_t hf[] = {
sys/dev/bwn/if_bwn_phy_lp.c
2824
bwn_tab_write_multi(mac, BWN_TAB_1(16, 0), N(hf), hf);
sys/dev/videomode/vesagtf.c
661
float vf, hf;
sys/dev/videomode/vesagtf.c
663
hf = 1000.0 * vmp->dot_clock / vmp->htotal;
sys/dev/videomode/vesagtf.c
664
vf = 1.0 * hf / vmp->vtotal;
sys/dev/videomode/vesagtf.c
668
vmp->hdisplay, vmp->vdisplay, vf, hf, vmp->dot_clock / 1000.0);
sys/netpfil/ipfw/test/test_dn_heap.c
102
h = dn_ht_init(NULL, 10, 0, hf, matchf, NULL);
sys/netpfil/ipfw/test/test_dn_heap.c
95
h = dn_ht_init(NULL, 10, 0, hf, matchf, newfn);