• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/bsd/dev/dtrace/

Lines Matching refs:copyin

8163  * 1. Make calls to subroutines other than copyin(), copyinstr() or
10920 * First, we're going to copyin() the sizeof (dof_hdr_t).
10923 if (copyin(uarg, &hdr, sizeof (hdr)) != 0) {
10925 if (copyin((void *)uarg, &hdr, sizeof (hdr)) != 0) {
10927 dtrace_dof_error(NULL, "failed to copyin DOF header");
10951 if (copyin(uarg, dof, hdr.dofh_loadsz) != 0) {
10953 if (copyin((void *)uarg, dof, hdr.dofh_loadsz) != 0) {
10973 * First, we're going to copyin() the sizeof (dof_hdr_t).
10976 dtrace_dof_error(NULL, "failed to copyin DOF header");
13924 * dof processing is to copyin the dof(s) pointed to by the dof_ioctl_data_t
15149 #define copyin(src, dst, len) copyin( (user_addr_t)(src), (dst), (len) )
15180 if (copyin(user_address + offsetof(dof_ioctl_data_t, dofiod_count),
15183 dtrace_dof_error(NULL, "failed to copyin dofiod_count");
15196 * Allocate a correctly sized structure and copyin the data.
15203 if (copyin(user_address, multi_dof, dof_ioctl_data_size) != 0) {
15204 dtrace_dof_error(NULL, "failed copyin of dof_ioctl_data_t");
15210 * Check that the count didn't change between the first copyin and the second.
15333 if (copyin((void *)arg, &pvd, sizeof (pvd)) != 0)
15366 if (copyin((void *)arg, &epdesc, sizeof (epdesc)) != 0)
15443 if (copyin((void *)arg, &aggdesc, sizeof (aggdesc)) != 0)
15604 if (copyin((void *)arg, &desc, sizeof (desc)) != 0)
15635 if (copyin((void *)arg, &desc, sizeof (desc)) != 0)
15703 if (copyin((void *)arg, &desc, sizeof (desc)) != 0)
15791 if (copyin((void *)arg, &hdr, sizeof (hdr)) != 0)
15811 if (copyin((void *)arg, &desc, sizeof (desc)) != 0)
16023 if (copyin((void *)arg, &fmt, sizeof (fmt)) != 0)
16072 #undef copyin