Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMIUtilString.cpp126 std::unique_ptr<char[]> pFormatted; in FormatPriv() local
128 pFormatted.reset(new char[n + 1]); // +1 for safety margin in FormatPriv()
129 ::strncpy(&pFormatted[0], vrFormat.c_str(), n); in FormatPriv()
135 nFinal = ::vsnprintf(&pFormatted[0], n, vrFormat.c_str(), argsDup); in FormatPriv()
145 strResult = pFormatted.get(); in FormatPriv()