Home
last modified time | relevance | path

Searched refs:ng (Results 1 – 25 of 50) sorted by relevance

12

/freebsd-12-stable/sbin/ipf/ipfs/
Dipfs.c688 natget_t ng; in writenat() local
706 ng.ng_ptr = next; in writenat()
707 ng.ng_sz = 0; in writenat()
708 if (ioctl(fd, SIOCSTGSZ, &ng)) { in writenat()
717 printf("NAT size %d from %p\n", ng.ng_sz, ng.ng_ptr); in writenat()
719 if (ng.ng_sz == 0) in writenat()
723 ipnp = malloc(ng.ng_sz); in writenat()
725 ipnp = realloc((char *)ipnp, ng.ng_sz); in writenat()
728 "malloc for %d bytes failed\n", ng.ng_sz); in writenat()
732 bzero((char *)ipnp, ng.ng_sz); in writenat()
[all …]
/freebsd-12-stable/lib/libc/gen/
Dgetnetgrent.c678 char **ng; local
715 ng = grp->ng_str;
730 ng[strpos] = NULL;
745 ng[strpos] = malloc(len + 1);
746 if (ng[strpos] == NULL) {
749 free(ng[freepos]);
753 bcopy(spos, ng[strpos], len + 1);
767 ng[NG_HOST] == NULL ? "" : ng[NG_HOST],
768 ng[NG_USER] == NULL ? "" : ",",
769 ng[NG_USER] == NULL ? "" : ng[NG_USER],
[all …]
/freebsd-12-stable/contrib/dialog/po/
Dvi.po27 msgstr "Không"
52 msgstr "Tháng"
73 msgstr "Thành công"
105 msgstr "Không có"
/freebsd-12-stable/tools/tools/ath/athrd/
Dathrd.c1015 int i, na, nb, ng, nt, ntg, nn; in main() local
1163 na = nb = ng = nt = ntg = nn = 0; in main()
1166 if (ath_hal_getchannels(&ahp.h, gchans, IEEE80211_CHAN_MAX, &ng, in main()
1168 calctxpower(&ahp.h, ng, gchans, tpcReduction, powerLimit, gtxpow); in main()
1170 isdfs |= anychan(gchans, ng, IEEE80211_CHAN_DFS); in main()
1172 is4ms |= anychan(gchans, ng, IEEE80211_CHAN_4MSXMIT); in main()
1235 intersect(bchans, btxpow, &nb, gchans, gtxpow, ng); in main()
1243 intersect(tgchans, tgtxpow, &ntg, gchans, gtxpow, ng); in main()
1247 intersect(gchans, gtxpow, &ng, nchans, ntxpow, nn); in main()
1257 dumpchannels(&ahp.h, ng, gchans, gtxpow); in main()
/freebsd-12-stable/lib/libc/nls/
Dsv_SE.ISO8859-1.msg21 7 Argumentlistan �r f�r l�ng
79 36 Operationen �r ig�ng
81 37 Operationen �r redan ig�ng
/freebsd-12-stable/contrib/tcpdump/
Dconfigure.ac948 # Check for libcap-ng
949 AC_MSG_CHECKING(whether to use libcap-ng)
953 AS_HELP_STRING([--with-cap-ng],
954 [use libcap-ng @<:@default=yes, if available@:>@]),
967 # Use libcap-ng if it's present, otherwise don't.
973 AC_CHECK_LIB(cap-ng, capng_change_id)
974 AC_CHECK_HEADERS(cap-ng.h)
Dconfigure.in962 # Check for libcap-ng
963 AC_MSG_CHECKING(whether to use libcap-ng)
967 AS_HELP_STRING([--with-cap-ng],
968 [use libcap-ng @<:@default=yes, if available@:>@]),
981 # Use libcap-ng if it's present, otherwise don't.
987 AC_CHECK_LIB(cap-ng, capng_change_id)
988 AC_CHECK_HEADERS(cap-ng.h)
Dconfig.h.in21 /* Define to 1 if you have the <cap-ng.h> header file. */
55 /* Define to 1 if you have the `cap-ng' library (-lcap-ng). */
Dconfigure1360 --with-cap-ng use libcap-ng [default=yes, if available]
8082 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use libcap-ng" >&5
8083 $as_echo_n "checking whether to use libcap-ng... " >&6; }
8114 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for capng_change_id in -lcap-ng" >&5
8115 $as_echo_n "checking for capng_change_id in -lcap-ng... " >&6; }
8120 LIBS="-lcap-ng $LIBS"
8155 LIBS="-lcap-ng $LIBS"
8161 ac_fn_c_check_header_mongrel "$LINENO" "cap-ng.h" "ac_cv_header_cap_ng_h" "$ac_includes_default"
/freebsd-12-stable/usr.bin/vi/catalog/
Dswedish.UTF-8.base68 074 "Ingen tidigare söksträng"
180 188 "Tecken efter söksträng, radoffset och/eller z kommandot"
181 189 "Ingen tidigare söksträng"
231 241 "%s: stäng"
/freebsd-12-stable/share/examples/jails/
Djng297 eiface=ng${i}_$name
/freebsd-12-stable/contrib/ntp/html/hints/
Dsolaris.xtra.409584940 does not use ntp_adjtime() system call. This prevents it from panic'ng
/freebsd-12-stable/contrib/gcc/cp/
Doperators.def88 DEF_SIMPLE_OPERATOR ("-", NEGATE_EXPR, "ng", 1)
/freebsd-12-stable/sys/netpfil/ipfilter/netinet/
Dip_nat.c1672 natget_t ng; in ipf_nat_getsz() local
1675 error = BCOPYIN(data, &ng, sizeof(ng)); in ipf_nat_getsz()
1685 nat = ng.ng_ptr; in ipf_nat_getsz()
1688 ng.ng_sz = 0; in ipf_nat_getsz()
1696 error = BCOPYOUT(&ng, data, sizeof(ng)); in ipf_nat_getsz()
1724 ng.ng_sz = sizeof(nat_save_t); in ipf_nat_getsz()
1727 ng.ng_sz += sizeof(ap_session_t) - 4; in ipf_nat_getsz()
1729 ng.ng_sz += aps->aps_psiz; in ipf_nat_getsz()
1735 error = BCOPYOUT(&ng, data, sizeof(ng)); in ipf_nat_getsz()
/freebsd-12-stable/contrib/libpcap/
DCHANGES233 Fix timestamps when reading pcap-ng files on big-endian
357 Fix filtering in pcap-ng files.
383 pcap_datalink() when reading pcap-ng files
434 Add limited support for reading pcap-ng files
/freebsd-12-stable/contrib/subversion/
Dbuild.conf1290 description = Test the wc-ng database subsystem
1299 description = Test the wc-ng pristine text storage subsystem
1423 path = tools/dev/wc-ng
DCOMMITTERS52 steveking Stefan Küng <tortoisesvn@gmail.com>
/freebsd-12-stable/contrib/subversion/subversion/libsvn_wc/
DREADME7 ### (See the files in notes/wc-ng ) ###
/freebsd-12-stable/contrib/tcsh/
DWishList134 ng
/freebsd-12-stable/sys/netgraph/
Dng_socket.c1200 VNET_DOMAIN_SET(ng);
/freebsd-12-stable/share/misc/
Diso639346 ng ndo ndo Ndonga
/freebsd-12-stable/contrib/ofed/opensm/opensm/
Dosm_torus.c9041 unsigned l, idx, cnt, pg, ng; in build_master_stree_branch() local
9066 ng = 2 * cdir; /* negative cdir port group index */ in build_master_stree_branch()
9073 grow_master_stree_branch(n_sw, sw, pg, ng); in build_master_stree_branch()
9081 grow_master_stree_branch(p_sw, sw, ng, pg); in build_master_stree_branch()
9097 grow_master_stree_branch(n_sw, sw, pg, ng); in build_master_stree_branch()
9105 grow_master_stree_branch(p_sw, sw, ng, pg); in build_master_stree_branch()
/freebsd-12-stable/contrib/binutils/opcodes/
Ds390-opc.txt477 e30000000080 ng RXE_RRRD "and 64" z900 zarch
740 e30000000080 ng RXY_RRRD "and with long offset 64" z990 zarch
/freebsd-12-stable/contrib/wpa/hostapd/
DChangeLog1011 madwifi-ng svn r1453 and newer; this fixes RSN that was apparently
1054 * driver_madwifi: added support for madwifi-ng
/freebsd-12-stable/usr.sbin/bsdconfig/share/
Ddevice.subr1336 f_network "ng%d" "Vimage netgraph(4) bridged Ethernet device"

12