Home | History | Annotate | Download | only in ls

Lines Matching defs:chcnt

84 	int chcnt;
87 chcnt = safe_print(p->fts_path);
88 chcnt += safe_print("/");
90 chcnt = 0;
91 return chcnt + safe_print(p->fts_name);
96 int chcnt;
99 chcnt = printescaped(p->fts_path);
100 chcnt += printescaped("/");
102 chcnt = 0;
104 return chcnt + printescaped(p->fts_name);
217 int base, chcnt, col, colwidth, num;
268 for (base = row, chcnt = col = 0; col < numcols; ++col) {
269 chcnt = printaname(array[base], dp->s_inode,
273 while (chcnt++ < colwidth)
284 int chcnt, col, colwidth;
311 chcnt = col = 0;
316 chcnt = col = 0;
319 chcnt = printaname(p, dp->s_inode,
321 while (chcnt++ < colwidth)
371 int chcnt;
375 chcnt = 0;
377 chcnt += printf("%*"PRIu64" ", inodefield, sp->st_ino);
384 chcnt += printf("%*s ", sizefield, szbuf);
386 chcnt += printf(f_commas ? "%'*llu " : "%*llu ",
392 chcnt += safe_printpath(p);
394 chcnt += printescapedpath(p);
396 chcnt += printpath(p);
398 chcnt += printtype(sp->st_mode);
399 return (chcnt);