Searched defs:tmp_buf (Results 1 - 8 of 8) sorted by relevance

/osnet-11/usr/src/lib/libc/port/stdio/
H A Dvwscanf.c109 char *tmp_buf; local
123 tmp_buf = alloca(sizeof (char) * (clen + 1));
124 if (tmp_buf == NULL)
126 wlen = wcstombs(tmp_buf, wstr, clen + 1);
133 strbuf._ptr = strbuf._base = (unsigned char *)tmp_buf;
134 strbuf._cnt = strlen(tmp_buf);
/osnet-11/usr/src/grub/grub2/grub-core/kern/
H A Ddisk.c408 char *tmp_buf;
421 tmp_buf = grub_malloc (GRUB_DISK_SECTOR_SIZE << GRUB_DISK_CACHE_BITS);
422 if (! tmp_buf)
434 - disk->log_sector_size), tmp_buf);
438 grub_memcpy (buf, tmp_buf + offset, size);
440 sector, tmp_buf);
441 grub_free (tmp_buf);
446 grub_free (tmp_buf);
463 tmp_buf = grub_malloc (num << disk->log_sector_size);
464 if (!tmp_buf)
407 char *tmp_buf; local
646 char tmp_buf[1 << disk->log_sector_size]; local
[all...]
/osnet-11/usr/src/lib/rpcsec_gss/
H A Drpcsec_gss.c796 char tmp_buf[512]; local
815 xdrmem_create(&xdrs, tmp_buf, sizeof (tmp_buf), XDR_ENCODE);
828 if (!marshall_verf(ap, &xdrs, tmp_buf))
834 if (!XDR_PUTBYTES(out_xdrs, tmp_buf, XDR_GETPOS(&xdrs)))
/osnet-11/usr/src/lib/libfru/libfrupicl/
H A Dfrupicl.c109 char *tmp_buf = NULL; local
116 tmp_buf = malloc((sizeof (*tmp_buf) * prop_info.size));
117 if (tmp_buf == NULL) {
121 if ((picl_err = picl_get_propval(proph, tmp_buf, prop_info.size))
123 free(tmp_buf);
127 *string = tmp_buf;
/osnet-11/usr/src/lib/libfru/libfrupicltree/
H A Dfrupicltree.c114 char *tmp_buf = NULL; local
128 tmp_buf = malloc((sizeof (*tmp_buf) * buf_size));
129 if (tmp_buf == NULL) {
133 if ((picl_err = ptree_get_propval(proph, tmp_buf, buf_size))
135 free(tmp_buf);
139 *string = tmp_buf;
/osnet-11/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftKeystoreUtil.c2861 CK_BYTE crypt_salt[KS_KEY_SALT_SIZE], tmp_buf[KS_KEY_SALT_SIZE]; local
2880 (void) bzero(tmp_buf, KS_KEY_SALT_SIZE);
2882 if (memcmp(crypt_salt, tmp_buf, KS_KEY_SALT_SIZE) == 0) {
/osnet-11/usr/src/lib/libdladm/common/
H A Dlinkprop.c3388 char tmp_buf[DLADM_STRSIZE]; local
3430 hexlen = sizeof (tmp_buf);
3432 cid->dc_len - sizeof (en), tmp_buf, &hexlen) != 0)
3436 duidtype, ennum, tmp_buf);
3458 hexlen = sizeof (tmp_buf);
3461 tmp_buf, &hexlen) != 0)
3465 duidtype, tmp_buf);
3471 hexlen = sizeof (tmp_buf);
3473 tmp_buf, &hexlen) != 0)
3476 (void) snprintf(buf, DLADM_STRSIZE, "0x%s", tmp_buf);
3502 char tmp_buf[DLADM_STRSIZE]; local
[all...]
/osnet-11/usr/src/lib/krb5/plugins/preauth/pkinit/
H A Dpkinit_crypto_openssl.c1844 unsigned char *tmp_buf = NULL, *tmp_buf2 = NULL, *vfy_buf = NULL; local
1883 if ((tmp_buf = realloc(tmp_buf, size + 1024 * 10)) == NULL)
1885 i = BIO_read(out, &(tmp_buf[size]), 1024 * 10);
1894 print_buffer_bin(tmp_buf, tmp_buf_len, "/tmp/client_enc_keypack");
1925 retval = wrap_signeddata(tmp_buf, tmp_buf_len,
1935 vfy_buf = tmp_buf;
1940 retval = wrap_signeddata(tmp_buf, tmp_buf_len,
1950 vfy_buf = tmp_buf;
1980 if (tmp_buf !
[all...]

Completed in 150 milliseconds