Home
last modified time | relevance | path

Searched refs:ncols (Results 1 – 2 of 2) sorted by relevance

/system/bt/stack/smp/
Dsmp_keys.cc96 int ncols = 32; /* num entries in one line */ in smp_debug_print_nbyte_big_endian() local
99 nrows = len % ncols ? len / ncols + 1 : len / ncols; in smp_debug_print_nbyte_big_endian()
101 for (int col = 0, x = 0; (ind < len) && (col < ncols); col++, ind++) { in smp_debug_print_nbyte_big_endian()
105 SMP_TRACE_DEBUG("[%03d]: %s", row * ncols, p_buf); in smp_debug_print_nbyte_big_endian()
/system/core/adb/
Dtest_device.py1662 def console_screen(ncols=None, nrows=None): argument
1669 if ncols is None:
1670 ncols = info.dwSize.X
1685 new_info.dwSize = COORD(ncols, nrows)
1687 Left=0, Top=0, Right=(ncols - 1),
1694 hScreen, u'\0', ncols * nrows, COORD(0,0), nwritten)
1715 ncols = csbi.dwSize.X
1717 length = ncols * pos.Y + pos.X + 1
1722 lines = [buf[i:i+ncols].rstrip(u'\0')
1723 for i in range(0, n[0], ncols)]