Lines Matching refs:strioc
1902 struct strioctl strioc; in stream_setcs() local
1904 strioc.ic_cmd = PARSEIOC_SETCS; in stream_setcs()
1905 strioc.ic_timout = 0; in stream_setcs()
1906 strioc.ic_dp = (char *)tcl; in stream_setcs()
1907 strioc.ic_len = sizeof (*tcl); in stream_setcs()
1909 if (ioctl(parse->generic->io.fd, I_STR, (caddr_t)&strioc) == -1) in stream_setcs()
1925 struct strioctl strioc; in stream_enable() local
1927 strioc.ic_cmd = PARSEIOC_ENABLE; in stream_enable()
1928 strioc.ic_timout = 0; in stream_enable()
1929 strioc.ic_dp = (char *)0; in stream_enable()
1930 strioc.ic_len = 0; in stream_enable()
1932 if (ioctl(parse->generic->io.fd, I_STR, (caddr_t)&strioc) == -1) in stream_enable()
1949 struct strioctl strioc; in stream_disable() local
1951 strioc.ic_cmd = PARSEIOC_DISABLE; in stream_disable()
1952 strioc.ic_timout = 0; in stream_disable()
1953 strioc.ic_dp = (char *)0; in stream_disable()
1954 strioc.ic_len = 0; in stream_disable()
1956 if (ioctl(parse->generic->io.fd, I_STR, (caddr_t)&strioc) == -1) in stream_disable()
1974 struct strioctl strioc; in stream_getfmt() local
1976 strioc.ic_cmd = PARSEIOC_GETFMT; in stream_getfmt()
1977 strioc.ic_timout = 0; in stream_getfmt()
1978 strioc.ic_dp = (char *)tcl; in stream_getfmt()
1979 strioc.ic_len = sizeof (*tcl); in stream_getfmt()
1980 if (ioctl(parse->generic->io.fd, I_STR, (caddr_t)&strioc) == -1) in stream_getfmt()
1997 struct strioctl strioc; in stream_setfmt() local
1999 strioc.ic_cmd = PARSEIOC_SETFMT; in stream_setfmt()
2000 strioc.ic_timout = 0; in stream_setfmt()
2001 strioc.ic_dp = (char *)tcl; in stream_setfmt()
2002 strioc.ic_len = sizeof (*tcl); in stream_setfmt()
2004 if (ioctl(parse->generic->io.fd, I_STR, (caddr_t)&strioc) == -1) in stream_setfmt()
2022 struct strioctl strioc; in stream_timecode() local
2024 strioc.ic_cmd = PARSEIOC_TIMECODE; in stream_timecode()
2025 strioc.ic_timout = 0; in stream_timecode()
2026 strioc.ic_dp = (char *)tcl; in stream_timecode()
2027 strioc.ic_len = sizeof (*tcl); in stream_timecode()
2029 if (ioctl(parse->generic->io.fd, I_STR, (caddr_t)&strioc) == -1) in stream_timecode()