Searched refs:bytesPerLine (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/include/binder/
H A DDebug.h38 size_t bytesPerLine=16, int32_t singleLineBytesCutoff=16,
H A DTextOutput.h102 HexDump(const void *buf, size_t size, size_t bytesPerLine=16);
105 inline HexDump& setBytesPerLine(size_t bytesPerLine);
112 inline size_t bytesPerLine() const;
172 inline HexDump& HexDump::setBytesPerLine(size_t bytesPerLine) { argument
173 mBytesPerLine = bytesPerLine; return *this;
187 inline size_t HexDump::bytesPerLine() const { return mBytesPerLine; } function in class:android::HexDump
/frameworks/native/libs/binder/
H A DTextOutput.cpp148 HexDump::HexDump(const void *buf, size_t size, size_t bytesPerLine) argument
151 , mBytesPerLine(bytesPerLine)
156 if (bytesPerLine >= 16) mAlignment = 4;
157 else if (bytesPerLine >= 8) mAlignment = 2;
163 printHexData(0, val.buffer(), val.size(), val.bytesPerLine(),
H A DDebug.cpp158 size_t bytesPerLine, int32_t singleLineBytesCutoff,
163 if (bytesPerLine >= 16) alignment = 4;
164 else if (bytesPerLine >= 8) alignment = 2;
196 if (bytesPerLine > maxBytesPerLine) bytesPerLine = maxBytesPerLine;
209 for (offset = 0; ; offset += bytesPerLine, pos += bytesPerLine) {
221 for (word = 0; word < bytesPerLine; ) {
226 for (index = 0; index < alignment || (alignment == 0 && index < bytesPerLine); index++) {
266 for (index = 0; index < bytesPerLine; inde
157 printHexData(int32_t indent, const void *buf, size_t length, size_t bytesPerLine, int32_t singleLineBytesCutoff, size_t alignment, bool cStyle, debugPrintFunc func, void* cookie) argument
[all...]

Completed in 70 milliseconds