Searched refs:curcol (Results 1 – 6 of 6) sorted by relevance
/external/strace/ |
D | strace.c | 401 if (current_tcp && current_tcp->curcol != 0) { in ptrace_restart() 545 current_tcp->curcol += n; in tvprintf() 568 current_tcp->curcol += strlen(str); in tprints() 608 current_tcp->curcol = 0; in line_ended() 612 printing_tcp->curcol = 0; in line_ended() 638 if (printing_tcp->curcol != 0 && (followfork < 2 || printing_tcp == tcp)) { in printleader() 646 printing_tcp->curcol = 0; in printleader() 652 current_tcp->curcol = 0; in printleader() 708 if (current_tcp->curcol < acolumn) in tabto() 709 tprints(acolumn_spaces + current_tcp->curcol); in tabto() [all …]
|
D | defs.h | 224 int curcol; /* Output column for this process */ member
|
D | ChangeLog | 8420 curcol in line_ended for the stale printing_tcp if followfork == 2. 47982 Instead of using "static FILE *outf and static unsigned int curcol" 47984 remember current tcb and use its ->outf and ->curcol. 47985 This allows to drop numerous "tcp->curcol = curcol" ops in trace(). 47997 * strace.c: Replace curcol static variable by struct tcb *current_tcp. 47999 (ptrace_restart): Use current_tcp->curcol instead of curcol. 48001 Use current_tcp->outf instead of outf, current_tcp->curcol instead of curcol. 48005 assignments to outf and curcol. 48033 Save tcp->curcol after PTRACE_LISTEN failure too, just in case. 50335 On glibc, tprintf("%*s", col - curcol, "") is noticeably slow [all …]
|
/external/toybox/toys/posix/ |
D | ls.c | 367 unsigned curcol, lastlen = *len, color = 0; in listfiles() local 368 struct stat *st = &((dt = sort[next_column(ul,dtlen,columns,&curcol)])->st); in listfiles() 386 if (!curcol) xputc('\n'); in listfiles() 388 if (ul) next_column(ul-1, dtlen, columns, &curcol); in listfiles() 389 printf("%*c", colsizes[ul ? curcol : 0]-lastlen-totpad, ' '); in listfiles()
|
/external/python/cpython2/Lib/idlelib/ |
D | CallTipWindow.py | 94 curline, curcol = map(int, self.widget.index("insert").split('.')) 96 (curline == self.parenline and curcol <= self.parencol) or \
|
/external/python/cpython3/Lib/idlelib/ |
D | calltip_w.py | 98 curline, curcol = map(int, self.anchor_widget.index("insert").split('.')) 100 (curline == self.parenline and curcol <= self.parencol) or \
|