Home
last modified time | relevance | path

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

/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/IntegrationLibrary/libs/socket-cpp/Socket/
DSocket.cpp78 std::string ASocket::StringFormat(const std::string strFormat, ...) in StringFormat() argument
81 va_start (args, strFormat); in StringFormat()
82 size_t len = std::vsnprintf(NULL, 0, strFormat.c_str(), args); in StringFormat()
85 va_start (args, strFormat); in StringFormat()
86 std::vsnprintf(&vec[0], len + 1, strFormat.c_str(), args); in StringFormat()
DSocket.h83 static std::string StringFormat(const std::string strFormat, ...);