Searched refs:grp (Results 101 - 125 of 250) sorted by relevance

12345678910

/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dctrl_iface_unix.c12 #include <grp.h>
496 struct group *grp; local
552 grp = getgrnam(gid_str);
553 if (grp) {
554 gid = grp->gr_gid;
1218 struct group *grp; local
1221 grp = getgrnam(gid_str);
1222 if (grp) {
1223 gid = grp->gr_gid;
/freebsd-11-stable/contrib/ntp/sntp/libevent/include/event2/
H A Dbufferevent.h974 * ever read on grp, and the variable pointed to by total_written_out to the
975 * total number of bytes ever written on grp. */
978 struct bufferevent_rate_limit_group *grp,
984 * Reset the number of bytes read or written on grp as given by
989 struct bufferevent_rate_limit_group *grp);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Duserspace.py31 import grp
72 (1, 0): ("POSIX Group", lambda id: grp.getgrgid(int(id)).gr_name),
/freebsd-11-stable/contrib/wpa/hostapd/
H A Dmain.c12 #include <grp.h>
547 struct group *grp; local
548 grp = getgrnam(group);
549 if (grp == NULL) {
553 interfaces->ctrl_iface_group = grp->gr_gid;
/freebsd-11-stable/contrib/jemalloc/include/jemalloc/internal/
H A Djemalloc_internal.h580 szind_t grp = shift << LG_SIZE_CLASS_GROUP; local
589 szind_t index = NTBINS + grp + mod;
626 size_t grp = reduced_index >> LG_SIZE_CLASS_GROUP; local
630 size_t grp_size_mask = ~((!!grp)-1);
632 (LG_SIZE_CLASS_GROUP-1))) << grp) & grp_size_mask;
634 size_t shift = (grp == 0) ? 1 : grp;
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/ttyio/
H A Dt_ptm.c42 #include <grp.h>
/freebsd-11-stable/contrib/gdb/include/
H A Dos9k.h93 #define m_group m_owner.grp_usr.grp
/freebsd-11-stable/lib/libc/posix1e/
H A Dacl_from_text.c38 #include <grp.h>
H A Dacl_from_text_nfs4.c37 #include <grp.h>
/freebsd-11-stable/libexec/mknetid/
H A Dmknetid.c46 #include <grp.h>
/freebsd-11-stable/sbin/mount_unionfs/
H A Dmount_unionfs.c62 #include <grp.h>
/freebsd-11-stable/sys/netinet/
H A Dip_mroute.h231 * Argument structure used by mrouted to get src-grp pkt counts
235 struct in_addr grp; member in struct:sioc_sg_req
278 u_long mfc_pkt_cnt; /* pkt count for src-grp */
279 u_long mfc_byte_cnt; /* byte count for src-grp */
280 u_long mfc_wrong_if; /* wrong if for src-grp */
/freebsd-11-stable/sys/netinet6/
H A Dip6_mroute.h175 * Argument structure used by multicast routing daemon to get src-grp
180 struct sockaddr_in6 grp; member in struct:sioc_sg_req6
239 u_quad_t mf6c_pkt_cnt; /* pkt count for src-grp */
240 u_quad_t mf6c_byte_cnt; /* byte count for src-grp */
241 u_quad_t mf6c_wrong_if; /* wrong if for src-grp */
/freebsd-11-stable/usr.bin/chpass/
H A Dfield.c56 #include <grp.h>
/freebsd-11-stable/sys/dev/bnxt/
H A Dbnxt_hwrm.h63 struct bnxt_grp_info *grp);
H A Dbnxt_hwrm.c720 bnxt_hwrm_ring_grp_alloc(struct bnxt_softc *softc, struct bnxt_grp_info *grp) argument
726 if (grp->grp_id != (uint16_t)HWRM_NA_SIGNATURE) {
728 "Attempt to re-allocate ring group %04x\n", grp->grp_id);
734 req.cr = htole16(grp->cp_ring_id);
735 req.rr = htole16(grp->rx_ring_id);
736 req.ar = htole16(grp->ag_ring_id);
737 req.sc = htole16(grp->stats_ctx);
744 grp->grp_id = le32toh(resp->ring_group_id);
/freebsd-11-stable/crypto/openssl/crypto/ecdh/
H A Decdhtest.c391 const EC_GROUP *grp; local
400 grp = EC_KEY_get0_group(k);
401 pub = EC_POINT_new(grp);
404 if (!EC_POINT_mul(grp, pub, priv, NULL, NULL, NULL))
/freebsd-11-stable/usr.sbin/lpr/chkprintcap/
H A Dskimprintcap.c44 #include <grp.h>
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DHostInfoPosix.cpp18 #include <grp.h>
/freebsd-11-stable/sys/dev/mlx5/mlx5_core/
H A Dmlx5_diagnostics.c230 MLX5_SET(mpcnt_reg, in, grp,
246 MLX5_SET(mpcnt_reg, in, grp,
/freebsd-11-stable/bin/ps/
H A Dps.c65 #include <grp.h>
732 struct group *grp; local
755 grp = NULL;
761 grp = getgrgid((gid_t)bigtemp);
763 if (grp == NULL)
764 grp = getgrnam(elem);
765 if (grp == NULL) {
772 inf->l.gids[(inf->count)++] = grp->gr_gid;
/freebsd-11-stable/contrib/sendmail/src/
H A Dmacro.c424 macdefine_tagged(mac, vclass, id, value, file, line, grp)
435 int grp;
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftpd/
H A Dls.c47 #include <grp.h>
232 struct group *grp; local
233 grp = getgrgid(st->st_gid);
234 if(grp == NULL) {
238 file->group = strdup(grp->gr_name);
/freebsd-11-stable/contrib/amd/hlfsd/
H A Dhlfsd.c152 struct group *grp; local
301 if ((grp = getgrnam(hlfs_group)) == (struct group *) NULL) {
305 hlfs_gid = grp->gr_gid;
/freebsd-11-stable/contrib/mtree/
H A Dgetid.c72 #include <grp.h>

Completed in 392 milliseconds

12345678910