Home
last modified time | relevance | path

Searched refs:lbsize (Results 1 – 3 of 3) sorted by relevance

/dragonfly/lib/libc/gen/
H A Dgetttyent.c46 static size_t lbsize; variable
82 if (!fgets(p = line, lbsize, tf)) { in getttyent()
99 lbsize += MALLOCCHUNK; in getttyent()
100 if ((p = realloc(line, lbsize)) == NULL) { in getttyent()
105 if (!fgets(&line[i], lbsize - i, tf)) in getttyent()
232 lbsize = MALLOCCHUNK; in setttyent()
/dragonfly/sbin/svc/
H A Dexecute.c622 int lbsize = (int)sizeof(cmd->logbuf); in execute_log() local
623 int lbmask = lbsize - 1; in execute_log()
662 if (n > lbsize - (windex & lbmask)) in execute_log()
663 n = lbsize - (windex & lbmask); in execute_log()
766 int lbsize = (int)sizeof(cmd->logbuf); in logger_thread() local
767 int lbmask = lbsize - 1; in logger_thread()
777 n = cmd->logcount - (lbsize - LOGCHUNK); in logger_thread()
783 n = lbsize - windex; in logger_thread()
/dragonfly/contrib/gdb-7/readline/
H A Ddisplay.c77 int lbsize; member
93 #define inv_lbsize (line_state_invisible->lbsize)
95 #define vis_lbsize (line_state_visible->lbsize)