Searched defs:indent (Results 1 - 4 of 4) sorted by relevance

/system/core/libutils/
H A DCallStack.cpp57 void CallStack::dump(int fd, int indent, const char* prefix) const { argument
58 FdPrinter printer(fd, indent, prefix);
H A DPrinter.cpp98 FdPrinter::FdPrinter(int fd, unsigned int indent, const char* prefix) : argument
99 mFd(fd), mIndent(indent), mPrefix(prefix ?: "") {
105 // <indent><prefix><line> -- e.g. '%-4s%s\n' for indent=4
H A DProcessCallStack.cpp239 void ProcessCallStack::dump(int fd, int indent, const char* prefix) const { argument
241 if (indent < 0) {
242 ALOGW("%s: Bad indent (%d)", __FUNCTION__, indent);
246 FdPrinter printer(fd, static_cast<unsigned int>(indent), prefix);
/system/extras/tests/lib/testUtil/
H A DtestUtil.c355 // Set an indent of spaces for each line of hex dump output
357 testXDumpSetIndent(uint8_t indent) argument
359 xDumpIndent = indent;
362 // Obtain the current hex dump indent amount

Completed in 191 milliseconds