/src/bin/sh/ |
output.h | 90 void fmtstr(char *, size_t, const char *, ...) __printflike(3, 4);
|
jobs.c | 426 fmtstr(str, sizeof str, "%d", n); 486 fmtstr(s, 16, "[%d] %c ", 497 fmtstr(s, 16, " " ); 500 fmtstr(s + col, 16, "%ld ", (long)ps->pid); 508 fmtstr(s + col, 16, "Done(%d)", st); 510 fmtstr(s + col, 16, "Done");
|
error.c | 387 fmtstr(buf, sizeof buf, "error %d", e);
|
parser.c | 2574 fmtstr(msg, 34, "Word \"%.13s\" unexpected", wordtext); 2576 fmtstr(msg, 34, 2579 fmtstr(msg, 34, "%s unexpected", tokname[lasttoken]); 2583 fmtstr(p, 30, " (expecting \"%.10s\")", text); 2585 fmtstr(p, 30, " (expecting %s)", tokname[token]);
|
options.c | 651 fmtstr(s, sizeof(s), "%d", ind);
|
expand.c | 601 fmtstr(expdest, SPACE_NEEDED, "%"PRIdMAX, result);
|
/src/usr.bin/mail/ |
cmd1.c | 82 const char *fmtstr; local in function:printhead 85 fmtstr = value(ENAME_HEADER_FORMAT); 86 if (fmtstr == NULL) 87 fmtstr = DEFAULT_HEADER_FORMAT; 88 msgline = smsgprintf(fmtstr, get_message(mesg));
|
collect.c | 241 char *fmtstr; local in function:interpolate 248 if (tabst && (fmtstr = value(ENAME_INDENT_PREAMBLE)) != NULL) 249 fmsgprintf(collf, fmtstr, mp); 267 if (tabst && (fmtstr = value(ENAME_INDENT_POSTSCRIPT)) != NULL) 268 fmsgprintf(collf, fmtstr, mp);
|
format.c | 1034 smsgprintf(const char *fmtstr, struct message *mp) 1042 if (strncmp(fmtstr, USE_HL_DATE, sizeof(USE_HL_DATE) - 1) != 0) 1046 fmtstr += sizeof(USE_HL_DATE) - 1; 1050 newfmt = preformat(&tm, fmtstr, mp, use_hl_date); 1058 fmsgprintf(FILE *fo, const char *fmtstr, struct message *mp) 1062 buf = smsgprintf(fmtstr, mp);
|
/src/libexec/telnetd/ |
utility.c | 440 static const char fmtstr[] = { "%l:%M\ variable in typeref:typename:const char[] 477 (void)strftime(db, sizeof(db), fmtstr, localtime(&t));
|
/src/sys/dev/audio/ |
audio.c | 8309 char fmtstr[64]; local in function:audio_print_format2 8311 audio_format2_tostr(fmtstr, sizeof(fmtstr), fmt); 8312 printf("%s %s\n", s, fmtstr);
|