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

/system/core/libutils/
H A DPrinter.cpp102 FdPrinter::FdPrinter(int fd, unsigned int indent, const char* prefix) : argument
103 mFd(fd), mIndent(indent), mPrefix(prefix ?: "") {
109 // <indent><prefix><line> -- e.g. '%-4s%s\n' for indent=4
H A DCallStack.cpp117 void CallStack::dump(int fd, int indent, const char* prefix) const { argument
118 FdPrinter printer(fd, indent, prefix);
H A DProcessCallStack.cpp236 void ProcessCallStack::dump(int fd, int indent, const char* prefix) const { argument
238 if (indent < 0) {
239 ALOGW("%s: Bad indent (%d)", __FUNCTION__, indent);
243 FdPrinter printer(fd, static_cast<unsigned int>(indent), prefix);
/system/core/sh/
H A Dshow.c60 static void indent(int, char *, FILE *);
81 indent(ind, pfx, fp);
250 indent(int amount, char *pfx, FILE *fp) function
/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 163 milliseconds