Lines Matching defs:fmt
15 void osdmap_info(const struct ceph_osdmap *map, const char *fmt, ...)
20 va_start(args, fmt);
21 vaf.fmt = fmt;
2155 int oid_printf_vargs(struct ceph_object_id *oid, const char *fmt, va_list ap)
2161 len = vsnprintf(oid->inline_name, sizeof(oid->inline_name), fmt, ap);
2172 void ceph_oid_printf(struct ceph_object_id *oid, const char *fmt, ...)
2176 va_start(ap, fmt);
2177 BUG_ON(oid_printf_vargs(oid, fmt, ap));
2184 const char *fmt, va_list ap)
2190 len = oid_printf_vargs(oid, fmt, aq);
2201 WARN_ON(vsnprintf(oid->name, len + 1, fmt, ap) != len);
2212 const char *fmt, ...)
2217 va_start(ap, fmt);
2218 ret = oid_aprintf_vargs(oid, gfp, fmt, ap);