Searched refs:mpp (Results 1 - 18 of 18) sorted by relevance

/freebsd-12-stable/contrib/amd/conf/mtab/
H A Dmtab_bsd.c110 mntlist **mpp, *mhp; local
119 mpp = &mhp;
124 *mpp = ALLOC(struct mntlist);
129 (*mpp)->mnt = mnt_dup(mntp);
134 mpp = &(*mpp)->mnext;
140 *mpp = NULL;
/freebsd-12-stable/contrib/smbfs/lib/smb/
H A Dmbuf.c53 m_get(size_t len, struct mbuf **mpp) argument
66 *mpp = m;
102 m_lineup(struct mbuf *m0, struct mbuf **mpp) argument
110 *mpp = m0;
124 *mpp = nm;
174 m_getm(struct mbuf *top, size_t len, struct mbuf **mpp) argument
190 *mpp = top;
/freebsd-12-stable/sys/arm/mv/
H A Darmv5_machdep.c119 int mpp[MPP_PIN_MAX]; local
131 * Try to access the MPP node directly i.e. through /aliases/mpp.
133 if ((node = OF_finddevice("mpp")) != -1)
134 if (ofw_bus_node_is_compatible(node, "mrvl,mpp"))
145 if ((node = fdt_find_compatible(node, "mrvl,mpp", 0)) == 0)
198 * Fill out a "mpp[pin] => function" table. All pins unspecified in
201 bzero(mpp, sizeof(mpp));
206 mpp[mpp_pin] = mpp_function;
220 ctrl_val |= MPP_SEL(i + j, mpp[
[all...]
H A Dmv_armv7_machdep.c155 int mpp[MPP_PIN_MAX]; local
167 * Try to access the MPP node directly i.e. through /aliases/mpp.
169 if ((node = OF_finddevice("mpp")) != -1)
170 if (ofw_bus_node_is_compatible(node, "mrvl,mpp"))
181 if ((node = fdt_find_compatible(node, "mrvl,mpp", 0)) == 0)
231 * Fill out a "mpp[pin] => function" table. All pins unspecified in
234 bzero(mpp, sizeof(mpp));
239 mpp[mpp_pin] = mpp_function;
253 ctrl_val |= MPP_SEL(i + j, mpp[
[all...]
/freebsd-12-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c1022 mlist_t **mpp; local
1132 for (i = 0, mpp = &tdp->t_members; i < vlen;
1133 i++, mpp = &((*mpp)->ml_next)) {
1138 *mpp = xmalloc(sizeof (mlist_t));
1139 (*mpp)->ml_name = xstrdup(sbuf +
1141 (*mpp)->ml_type = tdarr[ctm->ctm_type];
1142 (*mpp)->ml_offset = ctm->ctm_offset;
1143 (*mpp)->ml_size = 0;
1146 for (i = 0, mpp
[all...]
/freebsd-12-stable/sys/netsmb/
H A Dsmb_trantcp.c77 static int nbssn_recv(struct nbpcb *nbp, struct mbuf **mpp, int *lenp,
331 nbssn_recv(struct nbpcb *nbp, struct mbuf **mpp, int *lenp, argument
344 if (mpp)
345 *mpp = NULL;
441 if (mpp)
442 *mpp = m;
605 smb_nbst_recv(struct smb_vc *vcp, struct mbuf **mpp, struct thread *td) argument
612 error = nbssn_recv(nbp, mpp, &rplen, &rpcode, td);
H A Dsmb_tran.h60 int (*tr_recv)(struct smb_vc *vcp, struct mbuf **mpp, struct thread *td);
/freebsd-12-stable/contrib/tcpdump/
H A Dprint-mptcp.c379 const struct mp_prio *mpp = (const struct mp_prio *) opt; local
384 if (mpp->sub_b & MP_PRIO_B)
389 ND_PRINT((ndo, " id %u", mpp->addr_id));
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dmmp.c247 mmp_thread_exit(mmp_thread_t *mmp, kthread_t **mpp, callb_cpr_t *cpr) argument
249 ASSERT(*mpp != NULL);
250 *mpp = NULL;
/freebsd-12-stable/contrib/amd/amd/
H A Dmap.c233 am_node *mp, **mpp; local
245 mpp = exported_ap + first_free_map;
246 mp = *mpp = ALLOC(struct am_node);
/freebsd-12-stable/sys/kern/
H A Dvfs_mountroot.c263 vfs_mountroot_devfs(struct thread *td, struct mount **mpp) argument
270 *mpp = NULL;
279 *mpp = rootdevmp;
306 *mpp = mp;
H A Dvfs_vnops.c1692 vn_start_write(struct vnode *vp, struct mount **mpp, int flags) argument
1697 KASSERT((flags & V_MNTREF) == 0 || (*mpp != NULL && vp == NULL),
1706 if ((error = VOP_GETWRITEMOUNT(vp, mpp)) != 0) {
1707 *mpp = NULL;
1713 if ((mp = *mpp) == NULL)
1744 vn_start_secondary_write(struct vnode *vp, struct mount **mpp, int flags) argument
1749 KASSERT((flags & V_MNTREF) == 0 || (*mpp != NULL && vp == NULL),
1754 if ((error = VOP_GETWRITEMOUNT(vp, mpp)) != 0) {
1755 *mpp = NULL;
1765 if ((mp = *mpp)
[all...]
/freebsd-12-stable/sys/dev/oce/
H A Doce_if.c158 static int oce_tx(POCE_SOFTC sc, struct mbuf **mpp, int wq_index);
197 static struct mbuf * oce_tso_setup(POCE_SOFTC sc, struct mbuf **mpp);
1060 oce_tx(POCE_SOFTC sc, struct mbuf **mpp, int wq_index) argument
1075 m = *mpp;
1116 m = oce_tso_setup(sc, mpp);
1236 *mpp = m_temp;
1254 m_freem(*mpp);
1255 *mpp = NULL;
1307 oce_tso_setup(POCE_SOFTC sc, struct mbuf **mpp) argument
1321 m = *mpp;
[all...]
/freebsd-12-stable/contrib/ipfilter/
H A Dip_fil.c374 ipf_fastroute(m, mpp, fin, fdp)
375 mb_t *m, **mpp;
/freebsd-12-stable/sys/fs/nfsserver/
H A Dnfs_nfsdport.c723 struct mbuf **mpp, struct mbuf **mpendp, int *lenp)
773 *mpp = mp3;
786 struct thread *p, struct mbuf **mpp, struct mbuf **mpendp)
801 error = nfsrv_proxyds(NULL, vp, off, cnt, cred, p, NFSPROC_READDS, mpp,
859 *mpp = NULL;
871 *mpp = m3;
3081 * - if mpp != NULL, return the mount point so that it can
3087 struct mount **mpp, int startwrite, struct thread *p)
3094 if (mpp != NULL)
3095 *mpp
722 nfsvno_readlink(struct vnode *vp, struct ucred *cred, struct thread *p, struct mbuf **mpp, struct mbuf **mpendp, int *lenp) argument
785 nfsvno_read(struct vnode *vp, off_t off, int cnt, struct ucred *cred, struct thread *p, struct mbuf **mpp, struct mbuf **mpendp) argument
3085 nfsd_fhtovp(struct nfsrv_descript *nd, struct nfsrvfh *nfp, int lktype, struct vnode **vpp, struct nfsexstuff *exp, struct mount **mpp, int startwrite, struct thread *p) argument
4415 nfsrv_proxyds(struct nfsrv_descript *nd, struct vnode *vp, off_t off, int cnt, struct ucred *cred, struct thread *p, int ioproc, struct mbuf **mpp, char *cp, struct mbuf **mpp2, struct nfsvattr *nap, struct acl *aclp) argument
4852 nfsrv_readdsrpc(fhandle_t *fhp, off_t off, int len, struct ucred *cred, NFSPROC_T *p, struct nfsmount *nmp, struct mbuf **mpp, struct mbuf **mpendp) argument
5097 nfsrv_writedsrpc(fhandle_t *fhp, off_t off, int len, struct ucred *cred, NFSPROC_T *p, struct vnode *vp, struct nfsmount **nmpp, int mirrorcnt, struct mbuf **mpp, char *cp, int *failposp) argument
[all...]
/freebsd-12-stable/sys/contrib/ipfilter/netinet/
H A Dip_fil_freebsd.c690 * mpp - pointer to the mbuf pointer that is the start of the mbuf chain
693 ipf_fastroute(m0, mpp, fin, fdp)
694 mb_t *m0, **mpp;
699 register struct mbuf *m = *mpp;
726 *mpp = m;
/freebsd-12-stable/sys/sys/
H A Dvnode.h699 int vn_start_write(struct vnode *vp, struct mount **mpp, int flags);
700 int vn_start_secondary_write(struct vnode *vp, struct mount **mpp,
/freebsd-12-stable/sys/net80211/
H A Dieee80211_mesh.c440 ieee80211_mesh_register_proto_path(const struct ieee80211_mesh_proto_path *mpp) argument
445 if (strncmp(mpp->mpp_descr, mesh_proto_paths[i].mpp_descr,
453 memcpy(&mesh_proto_paths[firstempty], mpp, sizeof(*mpp));

Completed in 311 milliseconds