Home
last modified time | relevance | path

Searched refs:oldLength (Results 1 – 2 of 2) sorted by relevance

/system/core/logd/
DLogStatistics.cpp621 size_t oldLength; in format() local
626 oldLength = output.length(); in format()
630 spaces += spaces_total + oldLength - output.length(); in format()
643 oldLength = output.length(); in format()
651 spaces += spaces_total + oldLength - output.length(); in format()
668 oldLength = output.length(); in format()
675 spaces -= output.length() - oldLength; in format()
721 oldLength = output.length(); in format()
733 spaces -= output.length() - oldLength; in format()
754 oldLength = output.length(); in format()
[all …]
/system/core/libutils/
DString8.cpp328 size_t oldLength = length(); in appendFormatV() local
330 oldLength > SIZE_MAX - (size_t)n - 1) { in appendFormatV()
333 char* buf = lockBuffer(oldLength + n); in appendFormatV()
335 vsnprintf(buf + oldLength, n + 1, fmt, args); in appendFormatV()