Home
last modified time | relevance | path

Searched refs:fmt (Results 1 – 5 of 5) sorted by relevance

/pciutils/lib/
H A Ddump.c47 dump_validate(char *s, char *fmt) in dump_validate() argument
49 while (*fmt) in dump_validate()
51 if (*fmt == '#' ? !isxdigit(*s) : *fmt != *s) in dump_validate()
53 fmt++, s++; in dump_validate()
H A Dwin32-cfgmgr32.c232 fmt_validate(const char *s, int len, const char *fmt) in fmt_validate() argument
237 if (!fmt[i] || (fmt[i] == '#' ? !isxdigit(s[i]) : fmt[i] != s[i])) in fmt_validate()
/pciutils/
H A Dls-caps.c419 char *fmt; in cap_ht_sec() local
432fmt = "\t\tCommand: WarmRst%c DblEnd%c DevNum=%u ChainSide%c HostHide%c Slave%c <EOCErr%c DUL%c\n"; in cap_ht_sec()
434 fmt = "\t\tCommand: WarmRst%c DblEnd%c\n"; in cap_ht_sec()
435 printf(fmt, in cap_ht_sec()
446fmt = "\t\tLink Control: CFlE%c CST%c CFE%c <LkFail%c Init%c EOC%c TXO%c <CRCErr=%x IsocEn%c LSEn%… in cap_ht_sec()
448 fmt = "\t\tLink Control: CFlE%c CST%c CFE%c <LkFail%c Init%c EOC%c TXO%c <CRCErr=%x\n"; in cap_ht_sec()
449 printf(fmt, in cap_ht_sec()
464fmt = "\t\tLink Config: MLWI=%1$s DwFcIn%5$c MLWO=%2$s DwFcOut%6$c LWI=%3$s DwFcInEn%7$c LWO=%4$s … in cap_ht_sec()
466 fmt = "\t\tLink Config: MLWI=%s MLWO=%s LWI=%s LWO=%s\n"; in cap_ht_sec()
467 printf(fmt, in cap_ht_sec()
H A Dls-tree.c260 tree_printf(char *line, char *p, char *fmt, ...) in tree_printf() argument
268 va_start(args, fmt); in tree_printf()
269 int res = vsnprintf(p, space, fmt, args); in tree_printf()
H A Dsetpci.c102 trace(const char *fmt, ...) in trace() argument
105 va_start(args, fmt); in trace()
107 vprintf(fmt, args); in trace()