Home
last modified time | relevance | path

Searched refs:asc_line (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/libjingle/overrides/talk/base/
Dlogging.cc200 char hex_line[LINE_SIZE * 9 / 4 + 2], asc_line[LINE_SIZE + 1]; in LogMultiline() local
202 memset(asc_line, ' ', sizeof(asc_line)); in LogMultiline()
207 asc_line[i] = isprint(ch) ? ch : '.'; in LogMultiline()
211 asc_line[sizeof(asc_line)-1] = 0; in LogMultiline()
214 << asc_line << " " << hex_line << " "; in LogMultiline()
/external/chromium_org/third_party/libjingle/source/talk/base/
Dlogging.cc537 char hex_line[LINE_SIZE * 9 / 4 + 2], asc_line[LINE_SIZE + 1]; in LogMultiline() local
539 memset(asc_line, ' ', sizeof(asc_line)); in LogMultiline()
544 asc_line[i] = isprint(ch) ? ch : '.'; in LogMultiline()
548 asc_line[sizeof(asc_line)-1] = 0; in LogMultiline()
551 << asc_line << " " << hex_line << " "; in LogMultiline()
/external/chromium/third_party/libjingle/source/talk/base/
Dlogging.cc517 char hex_line[LINE_SIZE * 9 / 4 + 2], asc_line[LINE_SIZE + 1]; in LogMultiline() local
519 memset(asc_line, ' ', sizeof(asc_line)); in LogMultiline()
524 asc_line[i] = isprint(ch) ? ch : '.'; in LogMultiline()
528 asc_line[sizeof(asc_line)-1] = 0; in LogMultiline()
531 << asc_line << " " << hex_line << " "; in LogMultiline()
/external/chromium_org/v8/tools/
Dgrokdump.py133 asc_line = ""
138 asc_line += chr(byte)
140 asc_line += "."
148 asc_line)