Home
last modified time | relevance | path

Searched refs:bufferSize (Results 1 – 3 of 3) sorted by relevance

/system/core/libcorkscrew/
Dbacktrace.c309 const backtrace_symbol_t* symbol, char* buffer, size_t bufferSize) { in format_backtrace_line() argument
312 size_t fieldWidth = (bufferSize - 80) / 2; in format_backtrace_line()
316 snprintf(buffer, bufferSize, "#%02d pc %08x %.*s (%.*s+%u)", in format_backtrace_line()
320 snprintf(buffer, bufferSize, "#%02d pc %08x %.*s (%.*s)", in format_backtrace_line()
325 snprintf(buffer, bufferSize, "#%02d pc %08x %.*s", in format_backtrace_line()
/system/core/include/corkscrew/
Dbacktrace.h109 const backtrace_symbol_t* symbol, char* buffer, size_t bufferSize);
/system/core/liblog/
Dlogprint.c813 size_t bufferSize; in android_log_formatLogLine() local
834 bufferSize = (numLines * (prefixLen + suffixLen)) + entry->messageLen + 1; in android_log_formatLogLine()
836 if (defaultBufferSize >= bufferSize) { in android_log_formatLogLine()
839 ret = (char *)malloc(bufferSize); in android_log_formatLogLine()