Home
last modified time | relevance | path

Searched refs:curcol (Results 1 – 6 of 6) sorted by relevance

/external/strace/
Dstrace.c401 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 …]
Ddefs.h224 int curcol; /* Output column for this process */ member
DChangeLog8420 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/
Dls.c396 unsigned curcol, color = 0; in listfiles() local
397 unsigned long next = next_column(ul, dtlen, columns, &curcol); in listfiles()
413 if (!curcol) xputc('\n'); in listfiles()
509 curcol = colsizes[curcol]-(*len)-totpad; in listfiles()
510 if (curcol < 255) printf("%*c", curcol, ' '); in listfiles()
/external/python/cpython2/Lib/idlelib/
DCallTipWindow.py94 curline, curcol = map(int, self.widget.index("insert").split('.'))
96 (curline == self.parenline and curcol <= self.parencol) or \
/external/python/cpython3/Lib/idlelib/
Dcalltip_w.py98 curline, curcol = map(int, self.anchor_widget.index("insert").split('.'))
100 (curline == self.parenline and curcol <= self.parencol) or \