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

/frameworks/native/libs/binder/
H A DTextOutput.cpp51 HexDump::HexDump(const void *buf, size_t size, size_t bytesPerLine) argument
54 , mBytesPerLine(bytesPerLine)
59 if (bytesPerLine >= 16) mAlignment = 4;
60 else if (bytesPerLine >= 8) mAlignment = 2;
66 printHexData(0, val.buffer(), val.size(), val.bytesPerLine(),
H A DDebug.cpp159 size_t bytesPerLine, int32_t singleLineBytesCutoff,
164 if (bytesPerLine >= 16) alignment = 4;
165 else if (bytesPerLine >= 8) alignment = 2;
197 if (bytesPerLine > maxBytesPerLine) bytesPerLine = maxBytesPerLine;
210 for (offset = 0; ; offset += bytesPerLine, pos += bytesPerLine) {
222 for (word = 0; word < bytesPerLine; ) {
226 for (index = 0; index < alignment || (alignment == 0 && index < bytesPerLine); index++) {
266 for (index = 0; index < bytesPerLine; inde
158 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...]
/frameworks/native/include/binder/
H A DTextOutput.h97 HexDump(const void *buf, size_t size, size_t bytesPerLine=16);
100 inline HexDump& setBytesPerLine(size_t bytesPerLine);
107 inline size_t bytesPerLine() const;
181 inline HexDump& HexDump::setBytesPerLine(size_t bytesPerLine) { argument
182 mBytesPerLine = bytesPerLine; return *this;
196 inline size_t HexDump::bytesPerLine() const { return mBytesPerLine; } function in class:android::HexDump
H A DDebug.h37 size_t bytesPerLine=16, int32_t singleLineBytesCutoff=16,
/frameworks/native/libs/binder/include/binder/
H A DTextOutput.h97 HexDump(const void *buf, size_t size, size_t bytesPerLine=16);
100 inline HexDump& setBytesPerLine(size_t bytesPerLine);
107 inline size_t bytesPerLine() const;
181 inline HexDump& HexDump::setBytesPerLine(size_t bytesPerLine) { argument
182 mBytesPerLine = bytesPerLine; return *this;
196 inline size_t HexDump::bytesPerLine() const { return mBytesPerLine; } function in class:android::HexDump
H A DDebug.h37 size_t bytesPerLine=16, int32_t singleLineBytesCutoff=16,

Completed in 84 milliseconds