| /freebsd-12-stable/sys/netgraph/ |
| D | ng_vjc.c | 443 struct mbuf *hm; in ng_vjc_rcvdata() local 477 MGETHDR(hm, M_NOWAIT, MT_DATA); in ng_vjc_rcvdata() 478 if (hm == NULL) { in ng_vjc_rcvdata() 484 hm->m_len = 0; in ng_vjc_rcvdata() 485 hm->m_pkthdr.rcvif = NULL; in ng_vjc_rcvdata() 487 if (!(MCLGET(hm, M_NOWAIT))) { in ng_vjc_rcvdata() 488 m_freem(hm); in ng_vjc_rcvdata() 495 bcopy(hdr, mtod(hm, u_char *), hlen); in ng_vjc_rcvdata() 496 hm->m_len = hlen; in ng_vjc_rcvdata() 499 hm->m_next = m; in ng_vjc_rcvdata() [all …]
|
| /freebsd-12-stable/sys/netpfil/ipfilter/netinet/ |
| D | ip_nat6.c | 365 hostmap_t *hm; in ipf_nat6_hostmap() local 381 for (hm = softn->ipf_hm_maptable[hv]; hm; hm = hm->hm_next) in ipf_nat6_hostmap() 382 if (IP6_EQ(&hm->hm_osrc6, src) && in ipf_nat6_hostmap() 383 IP6_EQ(&hm->hm_odst6, dst) && in ipf_nat6_hostmap() 384 ((np == NULL) || (np == hm->hm_ipnat)) && in ipf_nat6_hostmap() 385 ((port == 0) || (port == hm->hm_port))) { in ipf_nat6_hostmap() 387 hm->hm_ref++; in ipf_nat6_hostmap() 388 return (hm); in ipf_nat6_hostmap() 396 KMALLOC(hm, hostmap_t *); in ipf_nat6_hostmap() 397 if (hm) { in ipf_nat6_hostmap() [all …]
|
| D | ip_nat.c | 766 hostmap_t *hm; in ipf_nat_hostmap() local 774 for (hm = softn->ipf_hm_maptable[hv]; hm; hm = hm->hm_hnext) in ipf_nat_hostmap() 775 if ((hm->hm_osrcip.s_addr == src.s_addr) && in ipf_nat_hostmap() 776 (hm->hm_odstip.s_addr == dst.s_addr) && in ipf_nat_hostmap() 777 ((np == NULL) || (np == hm->hm_ipnat)) && in ipf_nat_hostmap() 778 ((port == 0) || (port == hm->hm_port))) { in ipf_nat_hostmap() 780 hm->hm_ref++; in ipf_nat_hostmap() 781 return (hm); in ipf_nat_hostmap() 789 KMALLOC(hm, hostmap_t *); in ipf_nat_hostmap() 790 if (hm) { in ipf_nat_hostmap() [all …]
|
| /freebsd-12-stable/sbin/ipf/ipnat/ |
| D | ipnat.c | 615 hostmap_t hm, *hmp, **maptable; in showhostmap_dead() local 632 if (kmemcpy((char *)&hm, (u_long)hmp, sizeof(hm))) { in showhostmap_dead() 637 printhostmap(&hm, hv); in showhostmap_dead() 638 hmp = hm.hm_next; in showhostmap_dead() 652 hostmap_t hm; in showhostmap_live() local 664 iter.igi_data = &hm; in showhostmap_live() 671 printhostmap(&hm, hm.hm_hv); in showhostmap_live() 672 nsp->ns_maplist = hm.hm_next; in showhostmap_live()
|
| /freebsd-12-stable/sbin/ipf/ipftest/ |
| D | ipftest.c | 527 hostmap_t *hm; in dumpnat() local 542 for (hm = softn->ipf_hm_maplist; hm != NULL; hm = hm->hm_next) in dumpnat() 543 printhostmap(hm, hm->hm_hv); in dumpnat()
|
| /freebsd-12-stable/sys/kgssapi/krb5/ |
| D | krb5_mech.c | 1607 struct mbuf *m, *mlast, *hm, *cm, *n; in krb5_unwrap_old() local 1742 hm = m; in krb5_unwrap_old() 1745 hm->m_len = 8; in krb5_unwrap_old() 1746 hm->m_next = m; in krb5_unwrap_old() 1751 krb5_checksum(kc->kc_checksumkey, 13, hm, 0, datalen + 8, cklen); in krb5_unwrap_old() 1752 hm->m_next = NULL; in krb5_unwrap_old() 1755 if (bcmp(cm->m_data, hm->m_data + 16, cklen)) { in krb5_unwrap_old() 1756 m_freem(hm); in krb5_unwrap_old() 1760 m_freem(hm); in krb5_unwrap_old() 1785 struct mbuf *m, *mlast, *hm, *cm; in krb5_unwrap_new() local [all …]
|
| /freebsd-12-stable/usr.bin/fortune/tools/ |
| D | Troff.mac | 2 .nr hm 3v
|
| /freebsd-12-stable/contrib/wpa/src/drivers/ |
| D | driver_ndis.c | 2518 HMODULE hm; in wpa_driver_ndis_set_wzc() 2534 hm = LoadLibrary(TEXT("wzcsapi.dll")); in wpa_driver_ndis_set_wzc() 2535 if (hm == NULL) { in wpa_driver_ndis_set_wzc() 2543 wzc_enum_interf = (void *) GetProcAddressA(hm, "WZCEnumInterfaces"); in wpa_driver_ndis_set_wzc() 2544 wzc_query_interf = (void *) GetProcAddressA(hm, "WZCQueryInterface"); in wpa_driver_ndis_set_wzc() 2545 wzc_set_interf = (void *) GetProcAddressA(hm, "WZCSetInterface"); in wpa_driver_ndis_set_wzc() 2547 wzc_enum_interf = (void *) GetProcAddress(hm, "WZCEnumInterfaces"); in wpa_driver_ndis_set_wzc() 2548 wzc_query_interf = (void *) GetProcAddress(hm, "WZCQueryInterface"); in wpa_driver_ndis_set_wzc() 2549 wzc_set_interf = (void *) GetProcAddress(hm, "WZCSetInterface"); in wpa_driver_ndis_set_wzc() 2669 FreeLibrary(hm); in wpa_driver_ndis_set_wzc()
|
| /freebsd-12-stable/contrib/tcsh/ |
| D | tc.func.c | 1583 getusername(Char **hm) in getusername() argument 1588 if (hm == NULL) { in getusername() 1599 p = *hm; in getusername() 1603 *hm = &p[j]; in getusername() 1609 *hm = &p[j]; in getusername()
|
| /freebsd-12-stable/sys/mips/conf/ |
| D | TL-WR1043NDv2.hints | 50 # The current code only supports one CPU port. So hm, what should
|
| D | AP135.hints | 33 # The current code only supports one CPU port. So hm, what should
|
| D | DIR-655A1.hints | 58 # The current code only supports one CPU port. So hm, what should
|
| D | TL-ARCHERC7V2.hints | 50 # The current code only supports one CPU port. So hm, what should
|
| /freebsd-12-stable/contrib/ntp/ntpd/ |
| D | refclock_oncore.c | 3702 double xd, xm, xs, yd, ym, ys, hm, hft; in oncore_print_posn() local 3721 hm = instance->ss_ht/100.; in oncore_print_posn() 3722 hft= hm/0.3048; in oncore_print_posn() 3728 ns, xd, ew, yd, hm, hft); in oncore_print_posn() 3738 ns, idx, xm, ew, idy, ym, hm, hft); in oncore_print_posn() 3748 ns, idx, imx, xs, ew, idy, imy, ys, hm, hft); in oncore_print_posn()
|
| /freebsd-12-stable/usr.bin/calendar/calendars/de_DE.ISO8859-1/ |
| D | calendar.geschichte | 159 06/30 R�hm-Putsch, Ausschaltung der SA-F�hrung, 1934
|
| /freebsd-12-stable/tests/sys/acl/ |
| D | tools-posix.test | 93 $ setfacl -hm u:44:x,g:45:w lll
|
| /freebsd-12-stable/contrib/binutils/bfd/ |
| D | elfxx-mips.c | 2169 struct mips_elf_link_hash_entry *hm in mips_elf_count_global_tls_entries() local 2173 if (hm->tls_type & GOT_TLS_GD) in mips_elf_count_global_tls_entries() 2175 if (hm->tls_type & GOT_TLS_IE) in mips_elf_count_global_tls_entries() 2187 struct mips_elf_link_hash_entry *hm in mips_elf_count_global_tls_relocs() local 2191 arg->needed += mips_tls_got_relocs (arg->info, hm->tls_type, &hm->root); in mips_elf_count_global_tls_relocs() 2509 struct mips_elf_link_hash_entry *hm in mips_elf_global_got_index() local 2520 index = mips_tls_got_index (abfd, hm->tls_got_offset, &hm->tls_type, in mips_elf_global_got_index() 2521 r_type, info, hm, value); in mips_elf_global_got_index()
|
| /freebsd-12-stable/usr.sbin/services_mkdb/ |
| D | services | 1741 zephyr-clt 2103/udp #Zephyr serv-hm connection 1742 zephyr-hm 2104/udp #Zephyr hostmanager 1744 #zephyr-hm-srv 2105/udp #Zephyr hm-serv connection
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| D | SparcInstr64Bit.td | 126 // Bits 32-41, same as assembler's %hm.
|
| /freebsd-12-stable/contrib/gcc/ |
| D | ChangeLog.gcc43 | 154 2007-04-24 Hui-May Chang <hm.chang@apple.com> (r124115)
|
| D | ChangeLog | 1776 2007-02-02 Hui-May Chang <hm.chang@apple.com>
|
| /freebsd-12-stable/usr.bin/calendar/calendars/ |
| D | calendar.freebsd | 144 04/03 Hellmuth Michaelis <hm@FreeBSD.org> born in Kiel, Schleswig-Holstein, Germany, 1958
|
| /freebsd-12-stable/contrib/gcc/config/sparc/ |
| D | sparc.md | 2082 "or\t%1, %%hm(%a2), %0")
|
| /freebsd-12-stable/contrib/binutils/gas/ |
| D | ChangeLog-9697 | 546 handling. Add support for %hh,%hm,%lm,%h44,%m44,%l44.
|
| /freebsd-12-stable/share/termcap/ |
| D | termcap | 1479 # Hellmuth Michaelis <hm@FreeBSD.org>
|