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
1619 sizeof (tempbuf), in snapshot_array()
1651 (void) snprintf(tempbuf, sizeof (tempbuf), in snapshot_array()
1654 (void) snprintf(tempbuf, sizeof (tempbuf), in snapshot_array()
1665 (void) snprintf(tempbuf, sizeof (tempbuf), "%u ", disknum); in snapshot_array()
1689 (void) snprintf(tempbuf, sizeof (tempbuf), in snapshot_array()
1737 char tempbuf[256] = ""; in snapshot_disk() local
1783 (void) snprintf(tempbuf, sizeof (tempbuf), in snapshot_disk()
1786 (void) snprintf(tempbuf, sizeof (tempbuf), in snapshot_disk()
1789 (void) snprintf(tempbuf, sizeof (tempbuf), in snapshot_disk()
[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.c7361 char tempbuf[MAXNAM + 1]; in gen_utf8_names() local
7413 tempbuf[NAMSIZ] = '\0'; in gen_utf8_names()
7419 tempbuf[PRESIZ] = '\0'; in gen_utf8_names()
7423 tempbuf[nbytes] = '\0'; in gen_utf8_names()
7427 tempbuf[MAXNAM] = '\0'; in gen_utf8_names()
8838 (void) getcwd(tempbuf, (sizeof (tempbuf))); in extract_attr()
8841 *tempbuf = '\0'; in extract_attr()
8853 "%s\n"), tempbuf); in extract_attr()
9105 *tempbuf = '\0'; in rebuild_lk_comp_path()
9126 tempbuf); in rebuild_lk_comp_path()
[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()