Searched refs:fmtbuf (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/lib/libpam/libpam/
H A Dpam_debug_log.c48 char *fmtbuf, *modname, *period; local
56 asprintf(&fmtbuf, "%.*s: %s: %s\n", (int)(period - modname),
58 pam_verror(pamh, fmtbuf, ap);
59 free(fmtbuf);
/freebsd-9.3-release/usr.bin/lam/
H A Dlam.c105 static char fmtbuf[BUFSIZ]; local
106 char *fmtp = fmtbuf;
154 if (fmtp >= fmtbuf + sizeof(fmtbuf))
159 if (snprintf(fmtp, fmtbuf + sizeof(fmtbuf) - fmtp, "%%%ss", p)
160 >= fmtbuf + sizeof(fmtbuf) - fmtp)
/freebsd-9.3-release/crypto/openssh/
H A Dlog.c389 char fmtbuf[MSGBUFSIZ]; local
433 snprintf(fmtbuf, sizeof(fmtbuf), "%s: %s", txt, fmt);
434 vsnprintf(msgbuf, sizeof(msgbuf), fmtbuf, args);
438 strnvis(fmtbuf, msgbuf, sizeof(fmtbuf),
444 tmp_handler(level, fmtbuf, log_handler_ctx);
447 snprintf(msgbuf, sizeof msgbuf, "%s\r\n", fmtbuf);
452 syslog_r(pri, &sdata, "%.500s", fmtbuf);
456 syslog(pri, "%.500s", fmtbuf);
[all...]
/freebsd-9.3-release/sbin/dhclient/
H A Doptions.c630 char fmtbuf[32], *op = optbuf; local
654 fmtbuf[i] = dhcp_options[code].format[i];
658 fmtbuf[i] = 0;
667 fmtbuf[i] = 't';
670 fmtbuf[i] = 'x';
675 fmtbuf[i + 1] = 0;
678 fmtbuf[i] = 't';
679 fmtbuf[i + 1] = 0;
733 switch (fmtbuf[j]) {
836 warning("Unexpected format code %c", fmtbuf[
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/Object/
H A DELFObjectFile.h753 std::string fmtbuf; local
754 raw_string_ostream fmt(fmtbuf);
757 Result.append(fmtbuf.begin(), fmtbuf.end());
764 std::string fmtbuf;
765 raw_string_ostream fmt(fmtbuf);
768 Result.append(fmtbuf.begin(), fmtbuf.end());
775 std::string fmtbuf;
776 raw_string_ostream fmt(fmtbuf);
[all...]
/freebsd-9.3-release/contrib/sendmail/src/
H A Dsrvrsmtp.c4582 char fmtbuf[30]; local
4586 (void) sm_strlcpy(fmtbuf, "252", sizeof(fmtbuf));
4588 (void) sm_strlcpy(fmtbuf, "250", sizeof(fmtbuf));
4589 fmtbuf[3] = last ? ' ' : '-';
4590 (void) sm_strlcpy(&fmtbuf[4], "2.1.5 ", sizeof(fmtbuf) - 4);
4597 (void) sm_strlcpy(&fmtbuf[OFFF], "<%s@%s>",
4598 sizeof(fmtbuf)
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Object/
H A DMachOObjectFile.cpp983 std::string fmtbuf; local
984 raw_string_ostream fmt(fmtbuf);
1148 Result.append(fmtbuf.begin(), fmtbuf.end());
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Dntp_control.c1910 char fmtbuf[128]; local
1914 rc = vsnprintf(fmtbuf, sizeof(fmtbuf), fmt, va);
1916 if (rc < 0 || rc >= sizeof(fmtbuf))
1917 strcpy(fmtbuf + sizeof(fmtbuf) - strlen(ellipsis) - 1,
1919 ctl_putdata(fmtbuf, strlen(fmtbuf), 0);

Completed in 122 milliseconds