Lines Matching refs:strpeek
82 struct strpeek strpeek;
122 strpeek.ctlbuf.maxlen = (int)sizeof (ctltype);
123 strpeek.ctlbuf.len = 0;
124 strpeek.ctlbuf.buf = (char *)&ctltype;
125 strpeek.databuf.maxlen = 0;
126 strpeek.databuf.len = 0;
127 strpeek.databuf.buf = NULL;
128 strpeek.flags = 0;
131 retval = ioctl(fd, I_PEEK, &strpeek);
147 ((retval > 0) && (strpeek.ctlbuf.len >=
150 pptr = (union T_primitives *)strpeek.ctlbuf.buf;
224 if ((retval > 0) && (strpeek.ctlbuf.len <= 0)) {
245 if ((retval > 0) && (strpeek.ctlbuf.len > 0)) {