Home
last modified time | relevance | path

Searched refs:MB_MSYSTEM (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/sys/kern/
H A Dsubr_mchain.c141 return (mb_put_mem(mbp, (caddr_t)&x, sizeof(x), MB_MSYSTEM)); in mb_put_padbyte()
149 return (mb_put_mem(mbp, (caddr_t)&x, sizeof(x), MB_MSYSTEM)); in mb_put_uint8()
156 return (mb_put_mem(mbp, (caddr_t)&x, sizeof(x), MB_MSYSTEM)); in mb_put_uint16be()
163 return (mb_put_mem(mbp, (caddr_t)&x, sizeof(x), MB_MSYSTEM)); in mb_put_uint16le()
170 return (mb_put_mem(mbp, (caddr_t)&x, sizeof(x), MB_MSYSTEM)); in mb_put_uint32be()
177 return (mb_put_mem(mbp, (caddr_t)&x, sizeof(x), MB_MSYSTEM)); in mb_put_uint32le()
184 return (mb_put_mem(mbp, (caddr_t)&x, sizeof(x), MB_MSYSTEM)); in mb_put_int64be()
191 return (mb_put_mem(mbp, (caddr_t)&x, sizeof(x), MB_MSYSTEM)); in mb_put_int64le()
230 case MB_MSYSTEM: in mb_put_mem()
277 mtype = (uiop->uio_segflg == UIO_SYSSPACE) ? MB_MSYSTEM : MB_MUSER; in mb_put_uio()
[all …]
/freebsd-14.2/sys/netsmb/
H A Dsmb_smb.c181 md_get_mem(mdp, stime, 8, MB_MSYSTEM); in smb_smb_negotiate()
193 md_get_mem(mdp, NULL, 16, MB_MSYSTEM); in smb_smb_negotiate()
194 error = md_get_mem(mdp, vcp->vc_ch, sblen, MB_MSYSTEM); in smb_smb_negotiate()
401 mb_put_mem(mbp, pp, plen, MB_MSYSTEM); in smb_smb_ssnsetup()
409 mb_put_mem(mbp, pp, plen, MB_MSYSTEM); in smb_smb_ssnsetup()
410 mb_put_mem(mbp, (caddr_t)unipp, uniplen, MB_MSYSTEM); in smb_smb_ssnsetup()
562 mb_put_mem(mbp, pp, plen, MB_MSYSTEM); in smb_smb_treeconnect()
641 mb_put_mem(mbp, (caddr_t)&fid, sizeof(fid), MB_MSYSTEM); in smb_smb_readx()
683 md_get_mem(mdp, NULL, 4 * 2, MB_MSYSTEM); in smb_smb_readx()
688 md_get_mem(mdp, NULL, doff - off, MB_MSYSTEM); in smb_smb_readx()
[all …]
H A Dsmb_rq.h31 #ifndef MB_MSYSTEM
H A Dsmb_rq.c118 mb_put_mem(mbp, SMB_SIGNATURE, SMB_SIGLEN, MB_MSYSTEM); in smb_rq_new()
129 mb_put_mem(mbp, tzero, 12, MB_MSYSTEM); in smb_rq_new()
632 mb_put_mem(mbp, t2p->t_name, nmlen, MB_MSYSTEM); in smb_t2_request_int()
H A Dsmb_trantcp.c134 error = mb_put_mem(mbp, cp, seglen, MB_MSYSTEM); in nb_put_name()
269 md_get_mem(mdp, (caddr_t)&sin.sin_addr, 4, MB_MSYSTEM); in nbssn_rq_request()
H A Dsmb_subr.c336 return mb_put_mem(mbp, src, size, MB_MSYSTEM); in smb_put_dmem()
/freebsd-14.2/sys/fs/smbfs/
H A Dsmbfs_smb.c106 mb_put_mem(mbp, (caddr_t)&np->n_fid, 2, MB_MSYSTEM); in smbfs_smb_lockandx()
284 mb_put_mem(mbp, (caddr_t)&np->n_fid, 2, MB_MSYSTEM); in smbfs_smb_seteof()
315 mb_put_mem(mbp, (caddr_t)&np->n_fid, 2, MB_MSYSTEM); in smb_smb_flush()
352 mb_put_mem(mbp, (caddr_t)&np->n_fid, 2, MB_MSYSTEM); in smbfs_smb_setfsize()
597 mb_put_mem(mbp, (caddr_t)&np->n_fid, 2, MB_MSYSTEM); in smbfs_smb_setftime()
642 mb_put_mem(mbp, (caddr_t)&np->n_fid, 2, MB_MSYSTEM); in smbfs_smb_setfattrNT()
1058 md_get_mem(mbp, ctx->f_skey, SMB_SKEYLEN, MB_MSYSTEM); in smbfs_findnextLM1()
1064 md_get_mem(mbp, cp, sizeof(ctx->f_fname), MB_MSYSTEM); in smbfs_findnextLM1()
1211 mb_put_mem(mbp, (caddr_t)&ctx->f_Sid, 2, MB_MSYSTEM); in smbfs_smb_findclose2()
1309 error = md_get_mem(mbp, cp, nmlen, MB_MSYSTEM); in smbfs_findnextLM2()
[all …]
/freebsd-14.2/sys/sys/
H A Dmchain.h36 #define MB_MSYSTEM 0 /* use bcopy() */ macro