Lines Matching refs:Args
28 va_list args;
29 va_start(args, msg);
30 GuardVAList args_guard(args);
33 va_copy(args_cp, args);
52 ret = ::vsnprintf(buff_ptr.get(), size, msg, args);
65 template <class... Args>
66 std::string format_string(const char* fmt, Args const&... args) {
68 fmt, format_string_detail::unwrap(const_cast<Args&>(args))...);