HomeSort by: relevance | last modified time | path
    Searched refs:mt (Results 1 - 25 of 65) sorted by relevancy

1 2 3

  /src/bin/mt/
Makefile 4 PROG= mt
5 SRCS= mt.c
mt.c 1 /* $NetBSD: mt.c,v 1.49 2022/01/24 09:14:36 andvar Exp $ */
40 static char sccsid[] = "@(#)mt.c 8.2 (Berkeley) 6/6/93";
42 __RCSID("$NetBSD: mt.c,v 1.49 2022/01/24 09:14:36 andvar Exp $");
47 * mt --
263 const struct tape_desc *mt; local in function:status
265 for (mt = tapes;; mt++) {
266 if (mt->t_type == 0) {
271 if (mt->t_type == bp->mt_type)
274 (void)printf("%s tape drive, residual=%d\n", mt->t_name, bp->mt_resid)
    [all...]
  /src/lib/libc/resolv/
mtctxres.c 45 * To support binaries that used the private MT-safe interface in
63 mtctxres_t *mt; local in function:__res_init_ctx
72 if ((mt = malloc(sizeof (mtctxres_t))) == 0) {
77 memset(mt, 0, sizeof (mtctxres_t));
79 if ((ret = pthread_setspecific(key, mt)) != 0) {
80 free(mt);
91 mtctxres_t *mt = (mtctxres_t *)value; local in function:__res_destroy_ctx
93 if (mt != 0)
94 free(mt);
101 mtctxres_t *mt; local in function:___mtctxres
    [all...]
  /src/distrib/sun2/
MakeInstTape 17 mt -f $T rewind
26 mt -f $T rewind
MakeBootTape 18 mt -f $T rewind
32 mt -f $T rewind
  /src/distrib/sun3/
MakeInstTape 17 mt -f $T rewind
26 mt -f $T rewind
MakeBootTape 19 mt -f $T rewind
37 mt -f $T rewind
  /src/sys/dev/mscp/
mscp_tape.c 114 CFATTACH_DECL_NEW(mt, sizeof(struct mt_softc),
177 struct mt_softc *mt = device_private(self); local in function:mtattach
182 mt->mt_dev = self;
183 mt->mt_hwunit = mp->mscp_unit;
194 mt_putonline(struct mt_softc *mt)
198 device_private(device_parent(mt->mt_dev));
200 ((volatile struct mt_softc *) mt)->mt_state = MT_OFFLINE;
203 mp->mscp_unit = mt->mt_hwunit;
204 mp->mscp_cmdref = (long)&mt->mt_state;
209 if (tsleep(&mt->mt_state, PRIBIO, "mtonline", 240 * hz)
224 struct mt_softc *mt; local in function:mtopen
252 struct mt_softc *mt = device_lookup_private(&mt_cd, unit); local in function:mtclose
275 struct mt_softc *mt; local in function:mtstrategy
320 struct mt_softc *mt = device_lookup_private(&mt_cd, unit); local in function:mtfillin
349 struct mt_softc *mt = (void *)usc; local in function:mtonline
394 struct mt_softc *mt = (void *)usc; local in function:mtioerror
420 struct mt_softc *mt = device_lookup_private(&mt_cd, unit); local in function:mtioctl
538 struct mt_softc *mt = (void *)usc; local in function:mtcmddone
    [all...]
  /src/sys/dev/ic/
ns8477reg.h 109 #define FDC_CMD_WRITE_DATA(mt,mfm) (0x05|mt|mfm)
110 #define FDC_CMD_READ_DATA(mt,mfm,sk) (0x06|mt|mfm|sk)
113 #define FDC_CMD_WRITE_DEL_DATA(mt,mfm) (0x09|mt|mfm)
115 #define FDC_CMD_READ_DEL_DATA(mt,mfm,sk) (0x0c|mt|mfm|sk)
120 #define FDC_CMD_SCAN_EQUAL(mt,mfm,sk) (0x11|mt|mfm|sk
    [all...]
  /src/usr.bin/fstat/
zfs.c 51 struct mount mt; local in function:zfs_filestat
57 if (!KVM_READ(vp->v_mount, &mt, sizeof(mt))) {
69 fsp->fsid = mt.mnt_stat.f_fsidx.__fsid_val[0];
ptyfs.c 62 struct mount mt; local in function:ptyfs_filestat
69 if (!KVM_READ(vp->v_mount, &mt, sizeof(mt))) {
74 fsp->fsid = mt.mnt_stat.f_fsidx.__fsid_val[0];
tmpfs.c 51 struct mount mt; local in function:tmpfs_filestat
58 if (!KVM_READ(vp->v_mount, &mt, sizeof(mt))) {
64 fsp->fsid = mt.mnt_stat.f_fsidx.__fsid_val[0];
  /src/lib/libc/citrus/modules/
citrus_mapper_none.c 74 struct _citrus_mapper_traits * __restrict mt,
78 _DIAGASSERT(cm && dir && mt);
80 if (lenmt<sizeof(*mt))
84 mt->mt_src_max = mt->mt_dst_max = 1; /* 1:1 converter */
85 mt->mt_state_size = 0; /* stateless */
citrus_mapper_646.c 171 struct _citrus_mapper_traits * __restrict mt,
179 _DIAGASSERT(cm && dir && mt);
181 if (lenmt<sizeof(*mt))
197 mt->mt_src_max = mt->mt_dst_max = 1; /* 1:1 converter */
198 mt->mt_state_size = 0; /* stateless */
citrus_mapper_serial.c 171 struct _citrus_mapper_traits * __restrict mt,
178 _DIAGASSERT(cm && dir && mt);
180 if (lenmt<sizeof(*mt))
195 mt->mt_src_max = mt->mt_dst_max = 1; /* 1:1 converter */
196 mt->mt_state_size = 0; /* stateless */
citrus_mapper_zone.c 317 struct _citrus_mapper_traits * __restrict mt,
324 _DIAGASSERT(cm && dir && mt);
326 if (lenmt<sizeof(*mt))
346 mt->mt_src_max = mt->mt_dst_max = 1; /* 1:1 converter */
347 mt->mt_state_size = 0; /* stateless */
  /src/bin/
Makefile 5 hostname kill ksh ln ls mkdir mt mv pax ps pwd rcp rcmd rm rmdir \
  /src/regress/sys/kern/nameibench/
nameibench.c 203 int i, mt; local in function:main
207 mt = sysconf(_SC_NPROCESSORS_ONLN);
209 mt = atoi(argv[1]);
210 if (mt < 1) {
211 mt = 1;
221 for (i = 1; i <= mt; i++) {
  /src/sys/compat/linux/common/
linux_mtio.c 83 struct mtop mt; local in function:linux_ioctl_mtio
104 mt.mt_op = mtop_map[i].op;
105 mt.mt_count = lmtop.mt_count;
106 error = ioctlf(fp, MTIOCTOP, &mt);
  /src/sys/net/npf/
npf_mbuf.c 308 struct m_tag *mt; local in function:npf_mbuf_add_tag
313 mt = m_tag_get(PACKET_TAG_NPF, sizeof(uint32_t), M_NOWAIT);
314 if (mt == NULL) {
317 dat = (uint32_t *)(mt + 1);
319 m_tag_prepend(m, mt);
351 struct m_tag *mt; local in function:nbuf_find_tag
355 mt = m_tag_find(m, PACKET_TAG_NPF);
356 if (mt == NULL) {
359 *val = *(uint32_t *)(mt + 1);
  /src/share/man/man4/man4.vax/
Makefile 13 mem.4 mt.4 mtc.4 \
  /src/distrib/vax/inst-common/
instbin.conf 9 progs gzip ifconfig init ln ls mkdir mknod more mount mt dd
  /src/sys/arch/bebox/stand/boot/
monitor.c 56 { "mt", db_cmd_mt },
322 void mt ## x(uint32_t); \
328 void mt ## x(uint32_t data) \
330 __asm volatile (STR(mt ## x %0) :: STR(r)(data)); \
334 { #x, mf ## x, mt ## x }
341 void (*mt)(uint32_t); member in struct:__anon9379154c0208
375 printf("mt register data\nregister:");
384 (mreg[i].mt)(db_atob(argv[2]));
  /src/sys/arch/prep/stand/boot/
monitor.c 62 { "mt", db_cmd_mt },
328 void mt ## x(unsigned int data) \
330 __asm volatile (STR(mt ## x %0) :: STR(r)(data)); \
334 { #x, mf ## x, mt ## x }
341 void (*mt)(unsigned int); member in struct:__anon51bd14330208
375 printf("mt register data\nregister:");
384 (mreg[i].mt)((unsigned int)db_atob(argv[2]));
  /src/sys/arch/rs6000/stand/boot/
monitor.c 62 { "mt", db_cmd_mt },
328 void mt ## x(unsigned int data) \
330 __asm volatile (STR(mt ## x %0) :: STR(r)(data)); \
334 { #x, mf ## x, mt ## x }
341 void (*mt)(unsigned int); member in struct:__anon4f1456870208
375 printf("mt register data\nregister:");
384 (mreg[i].mt)((unsigned int)db_atob(argv[2]));

Completed in 20 milliseconds

1 2 3