Searched refs:snprintf (Results 251 - 275 of 1841) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dcssmdates.cpp68 if (8 != snprintf(str, 9, "%4.4d%2.2d%2.2d", y, m, d))
144 if (19 != snprintf(str, 20, "%4.4d-%2.2d-%2.2d_%2.2d:%2.2d:%2.2d",
165 if (14 != snprintf(str, 15, "%4.4d%2.2d%2.2d%2.2d%2.2d%2.2d",
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-c/
H A Derror.c58 snprintf(buf, buflen, "Error '%s'", err->m_type);
198 snprintf(buf, buflen, "%s: %s", data->m_what, strerror(data->m_errno));
254 snprintf(buf, buflen, "Not enough memory");
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dipp-support.c603 * just like (v)snprintf.
660 bufptr += snprintf(bufptr, bufend - bufptr + 1, "%d", val->integer);
662 bufptr += snprintf(temp, sizeof(temp), "%d", val->integer);
675 bufptr += snprintf(bufptr, bufend - bufptr + 1, "%d-%d",
678 bufptr += snprintf(temp, sizeof(temp), "%d-%d", val->range.lower,
684 bufptr += snprintf(bufptr, bufend - bufptr + 1, "%dx%d%s",
689 bufptr += snprintf(temp, sizeof(temp), "%dx%d%s",
702 snprintf(temp, sizeof(temp), "%04u-%02u-%02uT%02u:%02u:%02uZ",
706 snprintf(temp, sizeof(temp),
791 bufptr += snprintf(bufpt
[all...]
H A Dlangprintf.c78 snprintf(buffer, sizeof(buffer), "%s:", prefix);
84 snprintf(bufptr, sizeof(buffer) - (bufptr - buffer),
138 snprintf(temp, sizeof(temp), "%s: %s\n", prefix,
/macosx-10.9.5/cups-372.4/cups/scheduler/
H A Dutil.c205 snprintf(cfprocesspath, sizeof(cfprocesspath), "CFProcessPath=%s",
208 snprintf(cfprocesspath, sizeof(cfprocesspath), "CFProcessPath=%s/%s",
212 snprintf(cfprocesspath, sizeof(cfprocesspath), "CFProcessPath=%s", command);
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dbase64.c218 snprintf(output, 5, "%c%c==",
223 snprintf(output, 5, "%c%c%c=",
229 snprintf(output, 5, "%c%c%c%c",
H A Dcurl_sasl.c223 snprintf(response, sizeof(response),
349 snprintf(&HA1_hex[2 * i], 3, "%02x", digest[i]);
352 snprintf(uri, sizeof(uri), "%s/%s", service, realm);
367 snprintf(&HA2_hex[2 * i], 3, "%02x", digest[i]);
394 snprintf(&resp_hash_hex[2 * i], 3, "%02x", digest[i]);
396 snprintf(response, sizeof(response),
/macosx-10.9.5/iodbc-42.5/iodbc/iodbcinst/
H A Dmisc.c222 snprintf (buf + i, size - i, bIsInst ? "/odbcinst.ini" : "/odbc.ini");
279 snprintf (buf, size,
330 snprintf (buf, size, "%s", bIsInst ? ODBCINST_INI_APP : ODBC_INI_APP);
/macosx-10.9.5/libpcap-42/libpcap/
H A Dbpf_image.c294 (void)snprintf(operand, sizeof operand, fmt, v);
296 (void)snprintf(image, sizeof image,
300 (void)snprintf(image, sizeof image,
/macosx-10.9.5/network_cmds-433/pktapctl/
H A Dpktapctl.c123 snprintf(entry.filter_param_if_name, sizeof(entry.filter_param_if_name), "%s", argv[optind]);
157 snprintf(ifdr.ifd_name, sizeof(ifdr.ifd_name), "%s", ifname);
170 snprintf(ifdr.ifd_name, sizeof(ifdr.ifd_name), "%s", ifname);
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dsys_compat.c117 snprintf(cp, size, "%s=%s", name, value); /* APPLE */
310 snprintf(buffer, sizeof buffer, "%d.%d.%d.%d", addr[0] & 0xff,
313 snprintf(buffer, sizeof buffer, "%d.%d.%d.%d", addr[0], addr[1], addr[2], addr[3]); /* APPLE */
/macosx-10.9.5/text_cmds-87/lam/
H A Dlam.c164 if (snprintf(fmtp, fmtbuf + sizeof(fmtbuf) - fmtp, "%%%ss", p)
189 snprintf(lp, line + sizeof(line) - lp, ip->format, "");
222 snprintf(lp, line + sizeof(line) - lp, ip->format, s);
/macosx-10.9.5/top-89.1.2/
H A Duinteger.c105 if(-1 == snprintf(buf, bufsize, "-%" PRIu64, i.value))
108 if(-1 == snprintf(buf, bufsize, "%" PRIu64, i.value))
157 if(-1 == snprintf(buf, bufsize, "%s%" PRIu64 "%c",
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dkern_asl.c102 snprintf(fmt, MAX_FMT_LEN, "%s [%s %d] [%s %s] ",
107 snprintf(fmt, MAX_FMT_LEN, "%s [%s %d] ",
179 snprintf((fmt + offset), len + 1, KASL_KEYVAL_FMT,
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dprint-bgp.c479 snprintf(str, size, "%u", asnum);
481 snprintf(str, size, "%u.%u", asnum >> 16, asnum & 0xFFFF);
510 snprintf(buf, buflen, "%s/%d", getname((u_char *)&addr), plen);
558 snprintf(buf, buflen, "%s/%d, label:%u %s",
588 snprintf(pos, sizeof(addr), "%s", ipaddr_string(pptr));
593 snprintf(pos, sizeof(addr), "%s", ip6addr_string(pptr));
597 snprintf(pos, sizeof(addr), "bogus address length %u", addr_length);
642 snprintf(buf + offset, buflen - offset, ", Source %s",
656 snprintf(buf + offset, buflen - offset, ", Group %s",
681 snprintf(po
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/env/
H A Denv_failchk.c413 snprintf(fmt, sizeof(fmt), "%s/%s", UINT64_FMT, UINT64_FMT);
414 snprintf(buf,
417 snprintf(buf, DB_THREADID_STRLEN, "%lu/%lu", (u_long)pid, (u_long)tid);
423 snprintf(fmt, sizeof(fmt), "%s/TID", UINT64_FMT);
424 snprintf(buf, DB_THREADID_STRLEN, fmt, (u_int64_t)pid);
426 snprintf(buf, DB_THREADID_STRLEN, "%lu/TID", (u_long)pid);
/macosx-10.9.5/bind9-45.100/bind9/contrib/zkt/
H A Dlog.c121 snprintf (fname, MAXFNAME, "%s", name);
123 snprintf (fname, MAXFNAME, "%s/%s", path, name);
134 snprintf (fname+len, MAXFNAME-len, LOG_FNAMETMPL,
316 snprintf (fname, sizeof (fname), LOG_DOMAINTMPL, domain);
359 len += snprintf (cmdline+len, sizeof (cmdline) - len, " %s", argv[i]);
399 snprintf (format, sizeof (format), "%s: %s", lg_lvl2str(priority), fmt);
/macosx-10.9.5/mail_cmds-29/mail/
H A Dfio.c78 (void)snprintf(pathbuf, sizeof(pathbuf), "%s/mail.XXXXXXXXXX", tmpdir);
382 (void)snprintf(xname, sizeof(xname), "%s/%s", cmdbuf, name + 1);
388 (void)snprintf(xname, sizeof(xname), "%s%s", homedir, name + 1);
397 (void)snprintf(cmdbuf, sizeof(cmdbuf), "echo %s", name);
453 copylen = snprintf(name, namelen, "%s/%s",
471 (void)snprintf(buf, sizeof(buf), "~/%s", cp);
/macosx-10.9.5/BerkeleyDB-21/db/build_vxworks/test_micro/
H A Db_load.c120 (void)snprintf(buf, sizeof(buf), "%020d", i);
131 (void)snprintf(buf, sizeof(buf), "%010d", i);
/macosx-10.9.5/BerkeleyDB-21/db/test_micro/source/
H A Db_load.c119 (void)snprintf(buf, sizeof(buf), "%020d", i);
130 (void)snprintf(buf, sizeof(buf), "%010d", i);
/macosx-10.9.5/Heimdal-323.92.1/lib/com_err/
H A Dcom_err.c53 snprintf(msg, sizeof(msg), "Unknown error %ld", code);
60 snprintf(msg, sizeof(msg), "Unknown error %ld", code);
H A Derror.c68 snprintf(domain, sizeof(domain), "heim_com_err%d", p->table->base);
71 snprintf(str, len, "Reserved error code %ld in base %ld",
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A DNTMakefile90 $(OBJ)\snprintf.obj \
173 TMP_PROGS = $(OBJ)\snprintf-test.exe $(OBJ)\resolve-test.exe
186 $(OBJ)\snprintf-test.exe \
197 $(OBJ)\snprintf_test.obj: snprintf.c
224 $(OBJ)\snprintf-test.obj: snprintf-test.c
227 $(OBJ)\snprintf-test.exe: $(OBJ)\snprintf-test.obj $(OBJ)\libtest.lib $(LIBROKEN)
269 snprintf-test.exe
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-monitor/
H A Dbackend.c82 bv.bv_len = snprintf( buf, sizeof( buf ), "cn=Backend %d", i );
127 snprintf( buf, sizeof( buf ), "cn=Database %d,%s",
H A Doverlay.c78 bv.bv_len = snprintf( buf, sizeof( buf ), "cn=Overlay %d", i );
108 snprintf( buf, sizeof( buf ), "cn=Database %d,%s",

Completed in 159 milliseconds

<<11121314151617181920>>