Lines Matching defs:fmt
35 * @fmt: format template for assembling request message
44 const char *fmt, va_list ap)
69 BUG_ON(strcmp("ddss?u", fmt));
79 BUG_ON(strcmp("ddT", fmt));
93 BUG_ON(strcmp("ddT", fmt));
102 BUG_ON(strcmp("dsdb?s", fmt));
120 BUG_ON(strcmp("dsddg", fmt));
129 BUG_ON(strcmp("dqd", fmt));
138 BUG_ON(strcmp("dqV", fmt));
147 BUG_ON(strcmp("dsds", fmt));
158 BUG_ON(strcmp("dssg", fmt));
194 p9pdu_writef(struct p9_fcall *pdu, int proto_version, const char *fmt, ...);
258 p9pdu_vreadf(struct p9_fcall *pdu, int proto_version, const char *fmt,
264 for (ptr = fmt; *ptr; ptr++) {
526 p9pdu_vwritef(struct p9_fcall *pdu, int proto_version, const char *fmt,
532 for (ptr = fmt; *ptr; ptr++) {
695 int p9pdu_readf(struct p9_fcall *pdu, int proto_version, const char *fmt, ...)
700 va_start(ap, fmt);
701 ret = p9pdu_vreadf(pdu, proto_version, fmt, ap);
708 p9pdu_writef(struct p9_fcall *pdu, int proto_version, const char *fmt, ...)
713 va_start(ap, fmt);
714 ret = p9pdu_vwritef(pdu, proto_version, fmt, ap);