Symbol: ioctl_args
sys/dev/disk/ccd/ccd.c
321
struct dev_ioctl_args ioctl_args;
sys/dev/disk/ccd/ccd.c
326
bzero(&ioctl_args, sizeof(ioctl_args));
sys/dev/disk/ccd/ccd.c
332
ioctl_args.a_head.a_dev = cs->sc_dev;
sys/dev/disk/ccd/ccd.c
333
ioctl_args.a_cmd = CCDIOCCLR;
sys/dev/disk/ccd/ccd.c
334
ioctl_args.a_fflag = FWRITE;
sys/dev/disk/ccd/ccd.c
335
eval = ccdioctl(&ioctl_args);
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1259
IOCTL_ARG ioctl_args;
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1273
memset(&ioctl_args, 0, sizeof(ioctl_args));
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1275
ioctl_args.dwIoControlCode = piop->dwIoControlCode;
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1276
ioctl_args.nInBufferSize = piop->nInBufferSize;
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1277
ioctl_args.nOutBufferSize = piop->nOutBufferSize;
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1278
ioctl_args.lpBytesReturned = &bytesReturned;
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1280
if (ioctl_args.nInBufferSize) {
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1281
ioctl_args.lpInBuffer = kmalloc(ioctl_args.nInBufferSize, M_DEVBUF, M_WAITOK);
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1282
if (!ioctl_args.lpInBuffer)
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1285
ioctl_args.lpInBuffer, piop->nInBufferSize))
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1289
if (ioctl_args.nOutBufferSize) {
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1290
ioctl_args.lpOutBuffer = kmalloc(ioctl_args.nOutBufferSize, M_DEVBUF, M_WAITOK);
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1291
if (!ioctl_args.lpOutBuffer)
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1297
hpt_do_ioctl(&ioctl_args);
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1301
if (ioctl_args.result==HPT_IOCTL_RESULT_OK) {
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1303
if (copyout(ioctl_args.lpOutBuffer,
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1312
if (ioctl_args.lpInBuffer) kfree(ioctl_args.lpInBuffer, M_DEVBUF);
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1313
if (ioctl_args.lpOutBuffer) kfree(ioctl_args.lpOutBuffer, M_DEVBUF);
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1317
if (ioctl_args.lpInBuffer) kfree(ioctl_args.lpInBuffer, M_DEVBUF);
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
1318
if (ioctl_args.lpOutBuffer) kfree(ioctl_args.lpOutBuffer, M_DEVBUF);
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
869
static void __hpt_do_ioctl(PVBUS_EXT vbus_ext, IOCTL_ARG *ioctl_args)
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
871
ioctl_args->result = -1;
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
872
ioctl_args->done = hpt_ioctl_done;
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
873
ioctl_args->ioctl_cmnd = (void *)1;
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
876
ldm_ioctl((PVBUS)vbus_ext->vbus, ioctl_args);
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
878
while (ioctl_args->ioctl_cmnd) {
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
879
if (hpt_sleep(vbus_ext, ioctl_args, 0, "hptctl", HPT_OSM_TIMEOUT)==0)
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
890
static void hpt_do_ioctl(IOCTL_ARG *ioctl_args)
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
896
__hpt_do_ioctl(vbus_ext, ioctl_args);
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
897
if (ioctl_args->result!=HPT_IOCTL_RESULT_WRONG_VBUS)
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1235
IOCTL_ARG ioctl_args;
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1249
memset(&ioctl_args, 0, sizeof(ioctl_args));
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1251
ioctl_args.dwIoControlCode = piop->dwIoControlCode;
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1252
ioctl_args.nInBufferSize = piop->nInBufferSize;
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1253
ioctl_args.nOutBufferSize = piop->nOutBufferSize;
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1254
ioctl_args.lpBytesReturned = &bytesReturned;
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1256
if (ioctl_args.nInBufferSize) {
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1257
ioctl_args.lpInBuffer = kmalloc(ioctl_args.nInBufferSize, M_DEVBUF, M_WAITOK);
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1258
if (!ioctl_args.lpInBuffer)
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1261
ioctl_args.lpInBuffer, piop->nInBufferSize))
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1265
if (ioctl_args.nOutBufferSize) {
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1266
ioctl_args.lpOutBuffer = kmalloc(ioctl_args.nOutBufferSize, M_DEVBUF, M_WAITOK);
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1267
if (!ioctl_args.lpOutBuffer)
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1271
hpt_do_ioctl(&ioctl_args);
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1273
if (ioctl_args.result==HPT_IOCTL_RESULT_OK) {
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1275
if (copyout(ioctl_args.lpOutBuffer,
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1284
if (ioctl_args.lpInBuffer) kfree(ioctl_args.lpInBuffer, M_DEVBUF);
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1285
if (ioctl_args.lpOutBuffer) kfree(ioctl_args.lpOutBuffer, M_DEVBUF);
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1289
if (ioctl_args.lpInBuffer) kfree(ioctl_args.lpInBuffer, M_DEVBUF);
sys/dev/raid/hptrr/hptrr_osm_bsd.c
1290
if (ioctl_args.lpOutBuffer) kfree(ioctl_args.lpOutBuffer, M_DEVBUF);
sys/dev/raid/hptrr/hptrr_osm_bsd.c
843
static void __hpt_do_ioctl(PVBUS_EXT vbus_ext, IOCTL_ARG *ioctl_args)
sys/dev/raid/hptrr/hptrr_osm_bsd.c
845
ioctl_args->result = -1;
sys/dev/raid/hptrr/hptrr_osm_bsd.c
846
ioctl_args->done = hpt_ioctl_done;
sys/dev/raid/hptrr/hptrr_osm_bsd.c
847
ioctl_args->ioctl_cmnd = (void *)1;
sys/dev/raid/hptrr/hptrr_osm_bsd.c
850
ldm_ioctl((PVBUS)vbus_ext->vbus, ioctl_args);
sys/dev/raid/hptrr/hptrr_osm_bsd.c
852
while (ioctl_args->ioctl_cmnd) {
sys/dev/raid/hptrr/hptrr_osm_bsd.c
853
if (hpt_sleep(vbus_ext, ioctl_args, 0, "hptctl", HPT_OSM_TIMEOUT)==0)
sys/dev/raid/hptrr/hptrr_osm_bsd.c
864
static void hpt_do_ioctl(IOCTL_ARG *ioctl_args)
sys/dev/raid/hptrr/hptrr_osm_bsd.c
870
__hpt_do_ioctl(vbus_ext, ioctl_args);
sys/dev/raid/hptrr/hptrr_osm_bsd.c
871
if (ioctl_args->result!=HPT_IOCTL_RESULT_WRONG_VBUS)
sys/kern/init_sysent.c
71
{ AS(ioctl_args), 4, (sy_call_t *)sys_ioctl }, /* 54 = ioctl */
sys/kern/sys_generic.c
537
sys_ioctl(struct sysmsg *sysmsg, const struct ioctl_args *uap)
sys/sys/sysproto.h
1520
int sys_ioctl (struct sysmsg *sysmsg, const struct ioctl_args *);
sys/sys/sysunion.h
61
struct ioctl_args ioctl;