Lines Matching refs:ap
30 static int BufferAppendV(char *buf, int size, const char *fmt, va_list ap)
35 int ret = vsnprintf_s(buf, size, size - 1, fmt, ap);
39 static bool StringAppendV(std::string& dst, const char* fmt, va_list ap)
43 va_copy(bakAp, ap);
54 va_list ap;
55 va_start(ap, fmt);
56 int ret = BufferAppendV(buf, size, fmt, ap);
57 va_end(ap);
69 va_list ap;
70 va_start(ap, fmt);
71 StringAppendV(dst, fmt, ap);
72 va_end(ap);
78 va_list ap;
79 va_start(ap, fmt);
80 StringAppendV(dst, fmt, ap);
81 va_end(ap);