Lines Matching defs:fmt
29 p9pdu_writef(struct p9_fcall *pdu, int proto_version, const char *fmt, ...);
92 p9pdu_vreadf(struct p9_fcall *pdu, int proto_version, const char *fmt,
98 for (ptr = fmt; *ptr; ptr++) {
360 p9pdu_vwritef(struct p9_fcall *pdu, int proto_version, const char *fmt,
366 for (ptr = fmt; *ptr; ptr++) {
529 int p9pdu_readf(struct p9_fcall *pdu, int proto_version, const char *fmt, ...)
534 va_start(ap, fmt);
535 ret = p9pdu_vreadf(pdu, proto_version, fmt, ap);
542 p9pdu_writef(struct p9_fcall *pdu, int proto_version, const char *fmt, ...)
547 va_start(ap, fmt);
548 ret = p9pdu_vwritef(pdu, proto_version, fmt, ap);