Home | History | Annotate | Download | only in pending

Lines Matching refs:nitems

278     int nitems = sscanf(toybuf, " %d: %x:%x %x:%x %x %x:%x %*X:%*X %*X %d %*d %ld",
280 if (nitems == 10) {
304 int nitems = sscanf(toybuf, " %d: %8x%8x%8x%8x:%x %8x%8x%8x%8x:%x %x %x:%x %*X:%*X %*X %d %*d %ld",
307 if (nitems == 16) {
328 int nitems = 0, path_offset = 0, type, state;
332 nitems = sscanf(toybuf, "%*p: %lX %lX %lX %X %X %lu %n",
335 if (nitems < 6) break;
446 int fd, nitems = 0, length = 0;
455 nitems = readall(fd, toybuf, sizeof(toybuf) - 1);
457 if (nitems < 1) continue;
458 toybuf[nitems] = '\0';
534 int nitems = 0;
538 nitems = sscanf(toybuf, "%63s%lx%lx%X%d%d%d%lx%d%d%d\n",
540 if (nitems != 11) {//EOF with no (nonspace) chars read.
541 if ((nitems < 0) && feof(fp)) break;