Symbol: mtop
bin/dd/position.c
130
struct mtop t_op;
bin/mt/mt.c
118
struct mtop mt_com;
bin/pax/ar_io.c
1119
struct mtop mb;
bin/pax/ar_io.c
1268
struct mtop mb;
bin/pax/ar_io.c
950
struct mtop mb;
lib/librmt/rmtlib.c
498
struct mtop *mtop = arg;
lib/librmt/rmtlib.c
508
mtop->mt_op, mtop->mt_count);
sbin/dump/tape.c
409
struct mtop offl;
sbin/restore/tape.c
580
struct mtop tcom;
sys/arch/hp300/dev/ct.c
901
struct mtop *op;
sys/arch/hp300/dev/ct.c
907
op = (struct mtop *)data;
sys/arch/hp300/dev/mt.c
950
struct mtop *op;
sys/arch/hp300/dev/mt.c
955
op = (struct mtop *)data;
sys/compat/linux/common/linux_mtio.c
83
struct mtop mt;
sys/dev/gpib/ct.c
858
struct mtop *op;
sys/dev/gpib/ct.c
864
op = (struct mtop *)data;
sys/dev/gpib/mt.c
987
struct mtop *op;
sys/dev/gpib/mt.c
992
op = (struct mtop *)data;
sys/dev/isa/wt.c
558
switch ((short)((struct mtop*)addr)->mt_op) {
sys/dev/isa/wt.c
579
for (count = ((struct mtop*)addr)->mt_count; count > 0;
sys/dev/mscp/mscp_tape.c
421
struct mtop *mtop;
sys/dev/mscp/mscp_tape.c
427
mtop = (void *)data;
sys/dev/mscp/mscp_tape.c
428
if (mtop->mt_op == MTWEOF) {
sys/dev/mscp/mscp_tape.c
429
while (mtop->mt_count-- > 0)
sys/dev/mscp/mscp_tape.c
430
if ((error = mtcmd(mt, mtop->mt_op, 0, 0)))
sys/dev/mscp/mscp_tape.c
433
error = mtcmd(mt, mtop->mt_op, mtop->mt_count, 0);
sys/dev/qbus/ts.c
1003
tscommand(sc, dev, mtop->mt_op, scount);
sys/dev/qbus/ts.c
1012
printf("error in ioctl %d\n", mtop->mt_op);
sys/dev/qbus/ts.c
944
struct mtop *mtop; /* mag tape cmd op to perform */
sys/dev/qbus/ts.c
959
mtop = (struct mtop *)data;
sys/dev/qbus/ts.c
960
switch (mtop->mt_op) {
sys/dev/qbus/ts.c
962
callcount = mtop->mt_count;
sys/dev/qbus/ts.c
971
scount = mtop->mt_count;
sys/dev/qbus/ts.c
987
printf("ioctl %d not implemented.\n", mtop->mt_op);
sys/dev/qbus/ts.c
991
printf("invalid ioctl %d\n", mtop->mt_op);
sys/dev/scsipi/st.c
1457
struct mtop *mt = (struct mtop *) arg;
sys/net/if_ethersubr.c
520
struct mbuf *mtop = m;
sys/net/if_ethersubr.c
525
KASSERT((mtop->m_flags & M_PKTHDR) != 0);
sys/net/if_ethersubr.c
591
mtop->m_pkthdr.pattr_class =
sys/net/if_ethersubr.c
594
mtop->m_pkthdr.pattr_af = af;
sys/net/if_ethersubr.c
595
mtop->m_pkthdr.pattr_hdr = hdr;
sys/net/if_ethersubr.c
603
mtop->m_pkthdr.pattr_class = NULL;
sys/net/if_ethersubr.c
604
mtop->m_pkthdr.pattr_hdr = NULL;
sys/net/if_ethersubr.c
605
mtop->m_pkthdr.pattr_af = AF_UNSPEC;
sys/sys/mtio.h
137
#define MTIOCTOP _IOW('m', 1, struct mtop) /* do a mag tape op */
usr.bin/eject/eject.c
372
struct mtop m;
usr.bin/tcopy/tcopy.c
318
struct mtop op;
usr.sbin/rmt/rmt.c
167
struct mtop mtop;
usr.sbin/rmt/rmt.c
169
mtop.mt_op = atoi(op);
usr.sbin/rmt/rmt.c
170
mtop.mt_count = atoi(count);
usr.sbin/rmt/rmt.c
171
if (ioctl(tape, MTIOCTOP, (char *)&mtop) < 0)
usr.sbin/rmt/rmt.c
173
rval = mtop.mt_count;