Searched refs:nLength (Results 1 – 2 of 2) sorted by relevance
/base/global/resource_management_lite/frameworks/resmgr_lite/src/utils/ |
D | string_utils.cpp | 45 size_t nLength = vsnprintf(nullptr, 0, fmt, tmpArgs); // compute buffer size in FormatString() local 47 std::vector<char> vBuffer(nLength + 1, '\0'); in FormatString() 48 int nWritten = vsnprintf_s(&vBuffer[0], nLength + 1, nLength, fmt, args); in FormatString()
|
/base/global/resource_management/frameworks/resmgr/src/utils/ |
D | string_utils.cpp | 50 int nLength = vsnprintf(nullptr, 0, fmt, tmpArgs); // compute buffer size in FormatString() local 52 std::vector<char> vBuffer(nLength + 1, '\0'); in FormatString() 53 int nWritten = vsnprintf_s(&vBuffer[0], nLength + 1, nLength, fmt, args); in FormatString()
|