Lines Matching defs:fmt
94 void av_bprintf(AVBPrint *buf, const char *fmt, ...)
104 va_start(vl, fmt);
105 extra_len = vsnprintf(dst, room, fmt, vl);
117 void av_vbprintf(AVBPrint *buf, const char *fmt, va_list vl_arg)
128 extra_len = vsnprintf(dst, room, fmt, vl);
176 void av_bprint_strftime(AVBPrint *buf, const char *fmt, const struct tm *tm)
181 if (!*fmt)
185 if (room && (l = strftime(buf->str + buf->len, room, fmt, tm)))
189 room = !room ? strlen(fmt) + 1 :
199 if ((l = strftime(buf2, sizeof(buf2), fmt, tm))) {