Home
last modified time | relevance | path

Searched refs:tempbuf (Results 1 – 11 of 11) sorted by relevance

/illumos-gate/usr/src/lib/libsasl/lib/
H A Dseterror.c220 char tempbuf[21]; in sasl_seterror() local
277 tempbuf[0] = (char) va_arg(ap, int); /* get the next arg */ in sasl_seterror()
278 tempbuf[1]='\0'; in sasl_seterror()
282 &outlen, tempbuf); in sasl_seterror()
294 snprintf(tempbuf,20,frmt,ival); /* have snprintf do the work */ in sasl_seterror()
297 &outlen, tempbuf); in sasl_seterror()
H A Dcommon.c1814 char tempbuf[21]; in ___sasl_log() local
1866 tempbuf[0] = (char) va_arg(ap, int); /* get the next arg */ in ___sasl_log()
1867 tempbuf[1]='\0'; in ___sasl_log()
1870 result = _sasl_add_string(&out, &alloclen, &outlen, tempbuf); in ___sasl_log()
1883 snprintf(tempbuf,20,frmt,ival); /* have snprintf do the work */ in ___sasl_log()
1885 result = _sasl_add_string(&out, &alloclen, &outlen, tempbuf); in ___sasl_log()
/illumos-gate/usr/src/cmd/raidctl/
H A Draidctl.c1539 char tempbuf[256] = "\0"; in snapshot_array() local
1618 (void) snprintf(tempbuf, in snapshot_array()
1619 sizeof (tempbuf), in snapshot_array()
1622 (void) snprintf(tempbuf, in snapshot_array()
1623 sizeof (tempbuf), in snapshot_array()
1629 (void) strlcat(diskbuf, tempbuf, in snapshot_array()
1651 (void) snprintf(tempbuf, sizeof (tempbuf), in snapshot_array()
1654 (void) snprintf(tempbuf, sizeof (tempbuf), in snapshot_array()
1660 (void) strlcat(diskbuf, tempbuf, sizeof (diskbuf)); in snapshot_array()
1665 (void) snprintf(tempbuf, sizeof (tempbuf), "%u ", disknum); in snapshot_array()
[all …]
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dinet_ntop.c50 char tempbuf[6]; in convert2ascii() local
111 tempbuf[0] = '\0'; in convert2ascii()
112 (void) sprintf(tempbuf, "%x:", ntohs(*addr_component) & 0xffff); in convert2ascii()
113 len = strlen(tempbuf); in convert2ascii()
114 bcopy(tempbuf, ptr, len); in convert2ascii()
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_string.c680 char tempbuf[6]; in convert2ascii() local
735 tempbuf[0] = '\0'; in convert2ascii()
738 (void) mdb_snprintf(tempbuf, sizeof (tempbuf), "%x:", in convert2ascii()
740 len = strlen(tempbuf); in convert2ascii()
741 bcopy(tempbuf, ptr, len); in convert2ascii()
/illumos-gate/usr/src/lib/libcrypt/common/
H A Dcryptio.c158 char tempbuf[KSIZE], *a, *temp; in makekey() local
162 temp = tempbuf; in makekey()
/illumos-gate/usr/src/cmd/bnu/
H A Dpermission.c810 struct stat tempbuf; local
811 if ( stat(list[i], &tempbuf) == 0 ) {
812 _dev[i] = tempbuf.st_dev;
813 _ino[i] = tempbuf.st_ino;
/illumos-gate/usr/src/cmd/tar/
H A Dtar.c7374 char tempbuf[MAXNAM + 1]; in gen_utf8_names() local
7425 (void) strncpy(tempbuf, dblock.dbuf.linkname, NAMSIZ); in gen_utf8_names()
7426 tempbuf[NAMSIZ] = '\0'; in gen_utf8_names()
7429 tempbuf, iconv_cd, _X_LINKPATH, PATH_MAX); in gen_utf8_names()
7431 (void) strncpy(tempbuf, dblock.dbuf.prefix, PRESIZ); in gen_utf8_names()
7432 tempbuf[PRESIZ] = '\0'; in gen_utf8_names()
7433 nbytes = strlen(tempbuf); in gen_utf8_names()
7435 tempbuf[nbytes++] = '/'; in gen_utf8_names()
7436 tempbuf[nbytes] = '\0'; in gen_utf8_names()
7438 (void) strncat(tempbuf + nbytes, dblock.dbuf.name, in gen_utf8_names()
[all …]
/illumos-gate/usr/src/cmd/expr/
H A Dexpr.c396 char tempbuf[256]; in ematch() local
430 if (nmatch > ((sizeof (tempbuf) / sizeof (char)) - 1)) { in ematch()
434 tmptr = tempbuf; in ematch()
/illumos-gate/usr/src/cmd/sdiff/
H A Dsdiff.c746 char tempbuf[BMAX + 1]; in cpp() local
751 while ((fgets(tempbuf, BMAX, fromdes) != NULL)) in cpp()
752 (void) fputs(tempbuf, todes); in cpp()
/illumos-gate/usr/src/cmd/mdb/common/modules/idm/
H A Didm.c3608 char tempbuf[6]; in convert2ascii() local
3670 tempbuf[0] = '\0'; in convert2ascii()
3673 (void) mdb_snprintf(tempbuf, 6, "%x:", out_addr_component); in convert2ascii()
3674 len = strlen(tempbuf); in convert2ascii()
3675 bcopy(tempbuf, ptr, len); in convert2ascii()