Home
last modified time | relevance | path

Searched refs:ioarg (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/release/picobsd/tinyware/msh/
Dsh.h280 struct ioarg { struct
288 Extern struct ioarg ioargstack[NPUSH]; argument
295 struct ioarg *argp;
314 _PROTOTYPE(int nlchar , (struct ioarg *ap ));
315 _PROTOTYPE(int strchar , (struct ioarg *ap ));
316 _PROTOTYPE(int qstrchar , (struct ioarg *ap ));
317 _PROTOTYPE(int filechar , (struct ioarg *ap ));
318 _PROTOTYPE(int herechar , (struct ioarg *ap ));
319 _PROTOTYPE(int linechar , (struct ioarg *ap ));
320 _PROTOTYPE(int gravechar , (struct ioarg *ap , struct io *iop ));
[all …]
Dsh5.c20 struct ioarg temparg = {0, 0, 0, AFID_NOBUF, 0};
23 _PROTOTYPE(void pushio, (struct ioarg *argp, int (*fn)()));
24 _PROTOTYPE(static int xxchar, (struct ioarg *ap ));
118 struct ioarg *argp; in pushio()
176 register struct ioarg *ap; in nlchar()
195 register struct ioarg *ap; in wdchar()
218 register struct ioarg *ap; in dolchar()
231 register struct ioarg *ap; in xxchar()
249 register struct ioarg *ap; in strchar()
263 register struct ioarg *ap; in qstrchar()
[all …]
Dsh3.c622 struct ioarg *argp; in run()
/freebsd-12-stable/lib/libufs/
Dblock.c149 off_t ioarg[2]; in berase_helper() local
151 ioarg[0] = blockno * disk->d_bsize; in berase_helper()
152 ioarg[1] = size; in berase_helper()
153 return (ioctl(disk->d_fd, DIOCGDELETE, ioarg)); in berase_helper()
/freebsd-12-stable/sbin/swapon/
Dswapon.c745 off_t ioarg[2], sz; in swapon_trim() local
763 ioarg[0] = BBSIZE; in swapon_trim()
764 ioarg[1] = sz - BBSIZE; in swapon_trim()
765 if (ioctl(fd, DIOCGDELETE, ioarg) != 0) in swapon_trim()
/freebsd-12-stable/sbin/fsck_ffs/
Dfsutil.c637 off_t ioarg[2]; in blerase() local
641 ioarg[0] = blk * dev_bsize; in blerase()
642 ioarg[1] = size; in blerase()
643 ioctl(fd, DIOCGDELETE, ioarg); in blerase()