Searched refs:copyin (Results 151 - 175 of 360) sorted by relevance

1234567891011>>

/freebsd-10.3-release/sys/amd64/ia32/
H A Dia32_signal.c217 ret = copyin(PTRIN(mcp->mc_xfpustate), xfpustate,
282 ret = copyin(uap->ucp, &uc, UC_COPY_SIZE);
309 ret = copyin(uap->ucp, &uc, UC_COPY_SIZE);
705 error = copyin(uap->sigcntxp, &sc, sizeof(sc));
769 error = copyin(uap->sigcntxp, &uc, sizeof(uc));
845 error = copyin(uap->sigcntxp, &uc, sizeof(uc));
887 error = copyin(PTRIN(ucp->uc_mcontext.mc_xfpustate),
/freebsd-10.3-release/sys/dev/mpr/
H A Dmpr_user.c503 error = copyin(cmd->buf, cm->cm_data, cmd->len);
681 err = copyin(cmd->req, hdr, cmd->req_len);
811 err = copyin(PTRIN(data->PtrRequest), &tmphdr, data->RequestSize);
928 err = copyin(PTRIN(data->PtrDataOut),
933 err = copyin(PTRIN(data->PtrData),
1743 if (copyin(diag_action, &diag_register,
1757 if (copyin(diag_action, &diag_unregister,
1771 if (copyin(diag_action, &diag_query, sizeof(diag_query))
1782 if (copyin(diag_action, &diag_read_buffer,
1810 if (copyin(diag_actio
[all...]
/freebsd-10.3-release/sys/dev/mps/
H A Dmps_user.c494 error = copyin(cmd->buf, cm->cm_data, cmd->len);
693 err = copyin(cmd->req, hdr, cmd->req_len);
823 err = copyin(PTRIN(data->PtrRequest), &tmphdr, data->RequestSize);
940 err = copyin(PTRIN(data->PtrDataOut),
945 err = copyin(PTRIN(data->PtrData),
1716 if (copyin(diag_action, &diag_register,
1730 if (copyin(diag_action, &diag_unregister,
1744 if (copyin(diag_action, &diag_query, sizeof(diag_query))
1755 if (copyin(diag_action, &diag_read_buffer,
1783 if (copyin(diag_actio
[all...]
/freebsd-10.3-release/sys/security/audit/
H A Daudit_syscalls.c106 error = copyin(uap->record, rec, uap->length);
205 error = copyin(uap->data, (void *)&udata, uap->length);
586 error = copyin(uap->auid, &id, sizeof(id));
651 error = copyin(uap->auditinfo, &ai, sizeof(ai));
711 error = copyin(uap->auditinfo_addr, &aia, sizeof(aia));
/freebsd-10.3-release/sys/opencrypto/
H A Dcryptodev.c491 if ((error = copyin(sop->key, crie.cri_key,
509 if ((error = copyin(sop->mackey, cria.cri_key,
703 if ((error = copyin(cop->src, cse->uio.uio_iov[0].iov_base, cop->len)))
746 if ((error = copyin(cop->iv, cse->tmp_iv, cse->txform->blocksize)))
899 error = copyin(kop->crk_param[i].crp_p, krp->krp_param[i].crp_p, size);
/freebsd-10.3-release/sys/kern/
H A Dkern_thr.c119 if ((error = copyin(uap->ctx, &args.ctx, sizeof(args.ctx))))
135 if ((error = copyin(uap->param, &param, uap->param_size)))
177 error = copyin(param->rtp, &rtp, sizeof(struct rtprio));
H A Dkern_module.c395 if ((error = copyin(&stat->version, &version, sizeof(version))) != 0)
493 if ((error = copyin(&stat32->version, &version, sizeof(version))) != 0)
H A Dsys_generic.c707 error = copyin(uap->data, data, (u_int)size);
854 error = copyin(uap->ts, &ts, sizeof(ts));
862 error = copyin(uap->sm, &set, sizeof(set));
911 error = copyin(uap->tv, &tv, sizeof(tv));
1040 error = copyin(name, ibits[x], ncpubytes); \
1364 error = copyin(fds, bits, ni);
1424 error = copyin(uap->ts, &ts, sizeof(ts));
1431 error = copyin(uap->set, &set, sizeof(set));
1439 * take care of copyin that array to the kernel space.
H A Dvfs_acl.c120 * latter case, the routines below just copyin/copyout the contents. In the
121 * former case, they copyin the "struct oldacl" and convert it to the new
133 error = copyin(user_acl, &old, sizeof(old));
140 error = copyin(user_acl, kernel_acl, sizeof(*kernel_acl));
H A Dvfs_export.c149 if ((error = copyin(argp->ex_addr, saddr, argp->ex_addrlen)))
160 error = copyin(argp->ex_mask, smask, argp->ex_masklen);
H A Duipc_mqueue.c1700 error = copyin(msg_ptr, ((char *)msg) + sizeof(struct mqueue_msg),
2168 error = copyin(uap->attr, &attr, sizeof(attr));
2298 error = copyin(uap->attr, &attr, sizeof(attr));
2324 error = copyin(uap->abs_timeout, &ets, sizeof(ets));
2349 error = copyin(uap->abs_timeout, &ets, sizeof(ets));
2477 error = copyin(uap->sigev, &ev, sizeof(ev));
2817 error = copyin(uap->attr, &attr32, sizeof(attr32));
2834 error = copyin(uap->attr, &attr32, sizeof(attr32));
2865 error = copyin(uap->abs_timeout, &ets32, sizeof(ets32));
2894 error = copyin(ua
[all...]
/freebsd-10.3-release/sys/mips/mips/
H A Dfreebsd32_machdep.c261 if (copyin(uap->sigcntxp, &uc, sizeof(uc)) != 0) {
314 ret = copyin(uap->ucp, &uc, UC32_COPY_SIZE);
341 ret = copyin(uap->ucp, &uc, UC32_COPY_SIZE);
/freebsd-10.3-release/sys/i386/ibcs2/
H A Dibcs2_ipc.c148 error = copyin(uap->buf, &is, sizeof(is));
337 error = copyin(uap->arg.buf, &is, sizeof(is));
489 error = copyin(uap->buf, &is, sizeof(is));
/freebsd-10.3-release/sys/compat/linux/
H A Dlinux_time.c353 error = copyin(args->tp, &lts, sizeof lts);
474 error = copyin(args->rqtp, &lrqts, sizeof lrqts);
534 error = copyin(args->rqtp, &lrqts, sizeof(lrqts));
H A Dlinux_futex.c720 error = copyin(args->timeout, &ltimeout, sizeof(ltimeout));
758 error = copyin(args->uaddr, &val, sizeof(val));
762 LINUX_CTR1(sys_futex, "WAIT copyin failed %d",
854 error = copyin(args->uaddr, &val, sizeof(val));
858 LINUX_CTR1(sys_futex, "CMP_REQUEUE copyin failed %d",
1156 error = copyin(uaddr, &uval, 4);
1203 error = copyin((const void *)head, &uentry, sizeof(l_ulong));
1241 error = copyin(&head->futex_offset, &futex_offset,
/freebsd-10.3-release/sys/compat/svr4/
H A Dsvr4_ipc.c249 error = copyin(uap->arg.buf, (caddr_t) &ss, sizeof ss);
471 error = copyin(uap->buf, &ss, sizeof ss);
631 error = copyin(uap->buf, &ss, sizeof(ss));
/freebsd-10.3-release/sys/dev/nand/
H A Dnand_cdev.c283 copyin(data, buf, len);
362 ret = copyin(raw_rw->data + off, buf, bufsize);
/freebsd-10.3-release/sys/dev/iicbus/
H A Diic.c304 error = copyin(d->msgs, buf, sizeof(*d->msgs) * d->nmsgs);
306 /* Alloc kernel buffers for userland data, copyin write data */
315 * If the copyin() to buf failed, don't try to malloc bogus m->len.
322 error = copyin(usrbufs[i], m->buf, m->len);
/freebsd-10.3-release/sys/amd64/linux/
H A Dlinux_machdep.c334 error = copyin(uap->newset, &lmask, sizeof(l_sigset_t));
366 error = copyin(uap->uss, &lss, sizeof(l_stack_t));
/freebsd-10.3-release/sys/nfsserver/
H A Dnfs_srvkrpc.c175 error = copyin(uap->argp, (caddr_t)&addsockarg,
194 error = copyin(uap->argp, (caddr_t)&nfsdarg,
/freebsd-10.3-release/sys/powerpc/booke/
H A Dtrap.c357 error = copyin(MOREARGS(frame->fixreg[1]), sa->args + n,
493 if (copyin((void *)frame->dar, fpr,
/freebsd-10.3-release/sys/dev/mpt/
H A Dmpt_user.c678 error = copyin(page_req->buf, mpt_page.vaddr,
704 error = copyin(ext_page_req->buf, mpt_page.vaddr,
723 error = copyin(page_req->buf, mpt_page.vaddr, page_req->len);
738 error = copyin(raid_act->buf, mpt_page.vaddr,
/freebsd-10.3-release/sys/ufs/ffs/
H A Dffs_suspend.c144 error = copyin(base, bp->b_data, len);
/freebsd-10.3-release/sys/powerpc/powerpc/
H A Dmem.c310 error = copyin(mo->mo_desc, md, sizeof(struct mem_range_desc));
/freebsd-10.3-release/sys/dev/sfxge/
H A Dsfxge_nvram.c88 rc = copyin(ip->u.nvram.data + off, buf, len);

Completed in 474 milliseconds

1234567891011>>