Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libsasl/lib/
H A Dseterror.c222 char tempbuf[21]; in sasl_seterror() local
279 tempbuf[0] = (char) va_arg(ap, int); /* get the next arg */ in sasl_seterror()
280 tempbuf[1]='\0'; in sasl_seterror()
284 &outlen, tempbuf); in sasl_seterror()
296 snprintf(tempbuf,20,frmt,ival); /* have snprintf do the work */ in sasl_seterror()
299 &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()
/titanic_41/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 …]
/titanic_41/usr/src/uts/common/inet/ip/
H A Dinet_ntop.c139 char tempbuf[6]; in convert2ascii() local
200 tempbuf[0] = '\0'; in convert2ascii()
201 (void) sprintf(tempbuf, "%x:", ntohs(*addr_component) & 0xffff); in convert2ascii()
202 len = strlen(tempbuf); in convert2ascii()
203 bcopy(tempbuf, ptr, len); in convert2ascii()
/titanic_41/usr/src/cmd/mdb/common/mdb/
H A Dmdb_string.c678 char tempbuf[6]; in convert2ascii() local
733 tempbuf[0] = '\0'; in convert2ascii()
736 (void) mdb_snprintf(tempbuf, sizeof (tempbuf), "%x:", in convert2ascii()
738 len = strlen(tempbuf); in convert2ascii()
739 bcopy(tempbuf, ptr, len); in convert2ascii()
/titanic_41/usr/src/lib/libcrypt/common/
H A Dcryptio.c160 char tempbuf[KSIZE], *a, *temp; in makekey() local
164 temp = tempbuf; in makekey()
/titanic_41/usr/src/uts/common/avs/ns/unistat/
H A Dspcs_s_k.c642 char tempbuf[20]; in spcs_s_inttostring() local
649 (void) sprintf(tempbuf, "0x%0X", val); in spcs_s_inttostring()
651 (void) sprintf(tempbuf, "%d", val); in spcs_s_inttostring()
652 if (strlen(tempbuf) < (size_t)buflen) in spcs_s_inttostring()
653 (void) strcpy(buf, tempbuf); in spcs_s_inttostring()
/titanic_41/usr/src/cmd/bnu/
H A Dpermission.c809 struct stat tempbuf; local
810 if ( stat(list[i], &tempbuf) == 0 ) {
811 _dev[i] = tempbuf.st_dev;
812 _ino[i] = tempbuf.st_ino;
/titanic_41/usr/src/cmd/tar/
H A Dtar.c7317 char tempbuf[MAXNAM + 1]; in gen_utf8_names() local
7368 (void) strncpy(tempbuf, dblock.dbuf.linkname, NAMSIZ); in gen_utf8_names()
7369 tempbuf[NAMSIZ] = '\0'; in gen_utf8_names()
7372 tempbuf, iconv_cd, _X_LINKPATH, PATH_MAX); in gen_utf8_names()
7374 (void) strncpy(tempbuf, dblock.dbuf.prefix, PRESIZ); in gen_utf8_names()
7375 tempbuf[PRESIZ] = '\0'; in gen_utf8_names()
7376 nbytes = strlen(tempbuf); in gen_utf8_names()
7378 tempbuf[nbytes++] = '/'; in gen_utf8_names()
7379 tempbuf[nbytes] = '\0'; in gen_utf8_names()
7381 (void) strncat(tempbuf + nbytes, dblock.dbuf.name, in gen_utf8_names()
[all …]
/titanic_41/usr/src/cmd/expr/
H A Dexpr.c402 char tempbuf[256]; in ematch() local
436 if (nmatch > ((sizeof (tempbuf) / sizeof (char)) - 1)) { in ematch()
440 tmptr = tempbuf; in ematch()
/titanic_41/usr/src/cmd/sdiff/
H A Dsdiff.c748 char tempbuf[BMAX + 1]; in cpp() local
753 while ((fgets(tempbuf, BMAX, fromdes) != NULL)) in cpp()
754 (void) fputs(tempbuf, todes); in cpp()
/titanic_41/usr/src/cmd/mdb/common/modules/idm/
H A Didm.c3601 char tempbuf[6]; in convert2ascii() local
3663 tempbuf[0] = '\0'; in convert2ascii()
3666 (void) mdb_snprintf(tempbuf, 6, "%x:", out_addr_component); in convert2ascii()
3667 len = strlen(tempbuf); in convert2ascii()
3668 bcopy(tempbuf, ptr, len); in convert2ascii()