Lines Matching defs:strioc32
3013 struct strioctl32 strioc32;
3020 if (copyin(from, &strioc32, sizeof (strioc32)))
3024 striocp->ic_cmd = strioc32.ic_cmd;
3025 striocp->ic_timout = strioc32.ic_timout;
3026 striocp->ic_len = strioc32.ic_len;
3027 striocp->ic_dp = (char *)(uintptr_t)strioc32.ic_dp;
3046 struct strioctl32 strioc32;
3054 strioc32.ic_cmd = striocp->ic_cmd;
3055 strioc32.ic_timout = striocp->ic_timout;
3056 strioc32.ic_len = striocp->ic_len;
3057 strioc32.ic_dp = (caddr32_t)(uintptr_t)striocp->ic_dp;
3058 ASSERT((char *)(uintptr_t)strioc32.ic_dp ==
3061 if (copyout(&strioc32, to, sizeof (strioc32)))