Home
last modified time | relevance | path

Searched refs:oa_base (Results 1 – 22 of 22) sorted by relevance

/dragonfly/lib/libc/rpc/
HDauth_unix.c121 au->au_origcred.oa_base = NULL; in authunix_create()
143 au->au_origcred.oa_base = mem_alloc((u_int) len); in authunix_create()
145 if ((au->au_origcred.oa_base = mem_alloc((u_int) len)) == NULL) { in authunix_create()
150 memmove(au->au_origcred.oa_base, mymem, (size_t)len); in authunix_create()
163 if (au->au_origcred.oa_base) in authunix_create()
164 mem_free(au->au_origcred.oa_base, (u_int)len); in authunix_create()
232 xdrmem_create(&xdrs, verf->oa_base, verf->oa_length, in authunix_validate()
235 if (au->au_shcred.oa_base != NULL) { in authunix_validate()
236 mem_free(au->au_shcred.oa_base, in authunix_validate()
238 au->au_shcred.oa_base = NULL; in authunix_validate()
[all …]
HDrpc_callmsg.c90 memmove(buf, oa->oa_base, oa->oa_length); in xdr_callmsg()
97 memmove(buf, oa->oa_base, oa->oa_length); in xdr_callmsg()
127 if (oa->oa_base == NULL) { in xdr_callmsg()
128 oa->oa_base = (caddr_t) in xdr_callmsg()
130 if (oa->oa_base == NULL) in xdr_callmsg()
135 if (xdr_opaque(xdrs, oa->oa_base, in xdr_callmsg()
140 memmove(oa->oa_base, buf, in xdr_callmsg()
163 if (oa->oa_base == NULL) { in xdr_callmsg()
164 oa->oa_base = (caddr_t) in xdr_callmsg()
166 if (oa->oa_base == NULL) in xdr_callmsg()
[all …]
HDsvc_auth_des.c142 ixdr = (long *)msg->rm_call.cb_cred.oa_base; in _svcauth_des()
169 ixdr = (long *)msg->rm_call.cb_verf.oa_base; in _svcauth_des()
306 ixdr = (long *)msg->rm_call.cb_verf.oa_base; in _svcauth_des()
312 rqst->rq_xprt->xp_verf.oa_base = msg->rm_call.cb_verf.oa_base; in _svcauth_des()
314 (char *)ixdr - msg->rm_call.cb_verf.oa_base; in _svcauth_des()
HDsvc_auth_unix.c79 xdrmem_create(&xdrs, msg->rm_call.cb_cred.oa_base, auth_len,XDR_DECODE); in _svcauth_unix()
124 rqst->rq_xprt->xp_verf.oa_base = in _svcauth_unix()
125 msg->rm_call.cb_verf.oa_base; in _svcauth_unix()
HDsvc.c544 msg.rm_call.cb_cred.oa_base = cred_area; in svc_getreq_common()
545 msg.rm_call.cb_verf.oa_base = &(cred_area[MAX_AUTH_BYTES]); in svc_getreq_common()
HDsvc_raw.c102 srp->server.xp_verf.oa_base = srp->verf_body; in svc_raw_create()
HDclnt_raw.c218 if (msg.acpted_rply.ar_verf.oa_base != NULL) { in clnt_raw_call()
HDrpc_prot.c74 return (xdr_bytes(xdrs, &ap->oa_base, in xdr_opaque_auth()
HDauth_des.c374 ixdr = (uint32_t *)rverf->oa_base; in authdes_validate()
HDsvc_dg.c136 xprt->xp_verf.oa_base = su->su_verfbody; in svc_dg_create()
HDclnt_dg.c493 if (reply_msg.acpted_rply.ar_verf.oa_base != NULL) { in clnt_dg_call()
HDsvc_vc.c265 xprt->xp_verf.oa_base = cd->verf_body; in makefd_xprt()
HDclnt_vc.c412 if (reply_msg.acpted_rply.ar_verf.oa_base != NULL) { in clnt_vc_call()
/dragonfly/sys/dev/drm/amd/amdgpu/
HDamdgpu_job.h54 uint32_t oa_base, oa_size; member
HDamdgpu_ids.h58 uint32_t oa_base; member
HDamdgpu_vm.c733 id->oa_base != job->oa_base || in amdgpu_vm_need_pipeline_sync()
765 id->oa_base != job->oa_base || in amdgpu_vm_flush()
837 id->oa_base = job->oa_base; in amdgpu_vm_flush()
841 job->gws_size, job->oa_base, in amdgpu_vm_flush()
HDamdgpu_ring.h143 uint32_t oa_base, uint32_t oa_size);
HDamdgpu_ids.c534 id->oa_base = 0; in amdgpu_vmid_reset()
HDgfx_v9_0.c3392 uint32_t oa_base, uint32_t oa_size) in gfx_v9_0_ring_emit_gds_switch() argument
3402 oa_base = oa_base >> AMDGPU_OA_SHIFT; in gfx_v9_0_ring_emit_gds_switch()
3423 (1 << (oa_size + oa_base)) - (1 << oa_base)); in gfx_v9_0_ring_emit_gds_switch()
HDgfx_v8_0.c5445 uint32_t oa_base, uint32_t oa_size) in gfx_v8_0_ring_emit_gds_switch() argument
5453 oa_base = oa_base >> AMDGPU_OA_SHIFT; in gfx_v8_0_ring_emit_gds_switch()
5486 amdgpu_ring_write(ring, (1 << (oa_size + oa_base)) - (1 << oa_base)); in gfx_v8_0_ring_emit_gds_switch()
HDamdgpu_cs.c732 p->job->oa_base = amdgpu_bo_gpu_offset(oa); in amdgpu_cs_parser_bos()
/dragonfly/include/rpc/
HDauth.h167 caddr_t oa_base; /* address of more auth stuff */ member