Searched refs:strFormat (Results 1 – 2 of 2) sorted by relevance
/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/IntegrationLibrary/libs/socket-cpp/Socket/ |
D | Socket.cpp | 78 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()
|
D | Socket.h | 83 static std::string StringFormat(const std::string strFormat, ...);
|