/src/sys/dev/pci/ |
amrio.h | 103 unsigned long au_length; /* data buffer size (0 == no data) */ member in struct:amr_user_ioctl 118 u_int32_t au_length; /* length of the uspace buffer */
|
amrio.h | 103 unsigned long au_length; /* data buffer size (0 == no data) */ member in struct:amr_user_ioctl 118 u_int32_t au_length; /* length of the uspace buffer */
|
amr.c | 1482 unsigned long au_length; local in function:amrioctl 1504 au_length = au->au_length; 1515 if (au_length <= 0 || au_length > MAXPHYS || au_cmd[0] == 0x06) 1524 dp = malloc(amrioctl_buflen(au_length), M_DEVBUF, M_WAITOK|M_ZERO); 1527 if ((error = copyin(au_buffer, dp, au_length)) != 0) 1545 error = amr_ccb_map(amr, ac, dp, (int)au_length, 1551 error = copyout(dp, au_buffer, au_length);
|
amr.c | 1482 unsigned long au_length; local in function:amrioctl 1504 au_length = au->au_length; 1515 if (au_length <= 0 || au_length > MAXPHYS || au_cmd[0] == 0x06) 1524 dp = malloc(amrioctl_buflen(au_length), M_DEVBUF, M_WAITOK|M_ZERO); 1527 if ((error = copyin(au_buffer, dp, au_length)) != 0) 1545 error = amr_ccb_map(amr, ac, dp, (int)au_length, 1551 error = copyout(dp, au_buffer, au_length);
|