/illumos-gate/usr/src/lib/libsasl/lib/ |
H A D | seterror.c | 222 char tempbuf[21]; local 279 tempbuf[0] = (char) va_arg(ap, int); /* get the next arg */ 280 tempbuf[1]='\0'; 284 &outlen, tempbuf); 296 snprintf(tempbuf,20,frmt,ival); /* have snprintf do the work */ 299 &outlen, tempbuf);
|
H A D | common.c | 1814 char tempbuf[21]; local 1866 tempbuf[0] = (char) va_arg(ap, int); /* get the next arg */ 1867 tempbuf[1]='\0'; 1870 result = _sasl_add_string(&out, &alloclen, &outlen, tempbuf); 1883 snprintf(tempbuf,20,frmt,ival); /* have snprintf do the work */ 1885 result = _sasl_add_string(&out, &alloclen, &outlen, tempbuf);
|
/illumos-gate/usr/src/uts/common/inet/ip/ |
H A D | inet_ntop.c | 138 /* tempbuf must be big enough to hold ffff:\0 */ 139 char tempbuf[6]; local 200 tempbuf[0] = '\0'; 201 (void) sprintf(tempbuf, "%x:", ntohs(*addr_component) & 0xffff); 202 len = strlen(tempbuf); 203 bcopy(tempbuf, ptr, len);
|
/illumos-gate/usr/src/cmd/mdb/common/mdb/ |
H A D | mdb_string.c | 677 /* tempbuf must be big enough to hold ffff:\0 */ 678 char tempbuf[6]; local 733 tempbuf[0] = '\0'; 736 (void) mdb_snprintf(tempbuf, sizeof (tempbuf), "%x:", 738 len = strlen(tempbuf); 739 bcopy(tempbuf, ptr, len);
|
/illumos-gate/usr/src/cmd/raidctl/ |
H A D | raidctl.c | 1539 char tempbuf[256] = "\0"; local 1618 (void) snprintf(tempbuf, 1619 sizeof (tempbuf), 1622 (void) snprintf(tempbuf, 1623 sizeof (tempbuf), 1629 (void) strlcat(diskbuf, tempbuf, 1651 (void) snprintf(tempbuf, sizeof (tempbuf), 1654 (void) snprintf(tempbuf, sizeof (tempbuf), 1737 char tempbuf[256] = ""; local [all...] |
/illumos-gate/usr/src/lib/libcrypt/common/ |
H A D | cryptio.c | 160 char tempbuf[KSIZE], *a, *temp; local 164 temp = tempbuf;
|
/illumos-gate/usr/src/uts/common/avs/ns/unistat/ |
H A D | spcs_s_k.c | 642 char tempbuf[20]; local 649 (void) sprintf(tempbuf, "0x%0X", val); 651 (void) sprintf(tempbuf, "%d", val); 652 if (strlen(tempbuf) < (size_t)buflen) 653 (void) strcpy(buf, tempbuf);
|
/illumos-gate/usr/src/cmd/expr/ |
H A D | expr.c | 402 char tempbuf[256]; local 403 char *tmptr1 = 0; /* If tempbuf is not large enough */ 436 if (nmatch > ((sizeof (tempbuf) / sizeof (char)) - 1)) { 440 tmptr = tempbuf;
|
/illumos-gate/usr/src/cmd/bnu/ |
H A D | permission.c | 809 struct stat tempbuf; local 810 if ( stat(list[i], &tempbuf) == 0 ) { 811 _dev[i] = tempbuf.st_dev; 812 _ino[i] = tempbuf.st_ino;
|
/illumos-gate/usr/src/cmd/tar/ |
H A D | tar.c | 7360 char tempbuf[MAXNAM + 1]; local 7411 (void) strncpy(tempbuf, dblock.dbuf.linkname, NAMSIZ); 7412 tempbuf[NAMSIZ] = '\0'; 7415 tempbuf, iconv_cd, _X_LINKPATH, PATH_MAX); 7417 (void) strncpy(tempbuf, dblock.dbuf.prefix, PRESIZ); 7418 tempbuf[PRESIZ] = '\0'; 7419 nbytes = strlen(tempbuf); 7421 tempbuf[nbytes++] = '/'; 7422 tempbuf[nbytes] = '\0'; 7424 (void) strncat(tempbuf 8833 char tempbuf[MAXPATHLEN]; local 8984 char tempbuf[MAXPATHLEN]; local [all...] |
/illumos-gate/usr/src/cmd/sdiff/ |
H A D | sdiff.c | 748 char tempbuf[BMAX + 1]; local 753 while ((fgets(tempbuf, BMAX, fromdes) != NULL)) 754 (void) fputs(tempbuf, todes);
|
/illumos-gate/usr/src/cmd/mdb/common/modules/idm/ |
H A D | idm.c | 3600 /* tempbuf must be big enough to hold ffff:\0 */ 3601 char tempbuf[6]; local 3663 tempbuf[0] = '\0'; 3666 (void) mdb_snprintf(tempbuf, 6, "%x:", out_addr_component); 3667 len = strlen(tempbuf); 3668 bcopy(tempbuf, ptr, len);
|