Lines Matching defs:niov
3191 show_iovec32(private_t *pri, long offset, int niov, int showbuf, long count)
3198 if (niov > 16) /* is this the real limit? */
3199 niov = 16;
3201 if (offset != NULL && niov > 0 &&
3202 Pread(Proc, &iovec[0], niov*sizeof (iovec32_t), offset)
3203 == niov*sizeof (iovec32_t)) {
3208 for (ip = &iovec[0]; niov-- && !interrupt; ip++) {
3231 show_iovec(private_t *pri, long offset, long niov, int showbuf, long count)
3240 show_iovec32(pri, offset, niov, showbuf, count);
3244 if (niov > 16) /* is this the real limit? */
3245 niov = 16;
3247 if (offset != NULL && niov > 0 &&
3248 Pread(Proc, &iovec[0], niov*sizeof (iovec_t), offset)
3249 == niov*sizeof (iovec_t)) {
3254 for (ip = &iovec[0]; niov-- && !interrupt; ip++) {