Searched refs:outbuf (Results 126 - 139 of 139) sorted by relevance

123456

/illumos-gate/usr/src/lib/libprtdiag_psr/sparc/schumacher/common/
H A Dschumacher.c232 * the value will be in outbuf
233 * Caller must free the outbuf
236 picldiag_get_string_propval(picl_nodehdl_t modh, char *prop_name, char **outbuf) argument
263 *outbuf = prop_value;
602 picldiag_get_first_compatible_value(picl_nodehdl_t nodeh, char **outbuf) argument
625 *outbuf = pval;
655 *outbuf = pval;
/illumos-gate/usr/src/uts/common/fs/tmpfs/
H A Dtmp_vnops.c1477 caddr_t outbuf; local
1513 outbuf = kmem_alloc(bufsize, KM_SLEEP);
1515 dp = (struct dirent64 *)outbuf;
1551 error = uiomove(outbuf, outcount, UIO_READ, uiop);
1565 kmem_free(outbuf, bufsize);
/illumos-gate/usr/src/cmd/savecore/
H A Dsavecore.c534 char *outbuf = Zalloc(FBUFSIZE); local
537 (void) setvbuf(out, outbuf, _IOFBF, FBUFSIZE);
560 free(outbuf);
/illumos-gate/usr/src/uts/common/fs/dev/
H A Dsdev_subr.c2431 void *outbuf; local
2468 dp = outbuf = kmem_alloc(alloc_count, KM_SLEEP);
2638 error = uiomove(outbuf, outcount, UIO_READ, uiop);
2656 kmem_free(outbuf, alloc_count);
/illumos-gate/usr/src/cmd/boot/installboot/i386/
H A Dinstallboot.c194 goto outbuf;
228 outbuf:
/illumos-gate/usr/src/uts/common/fs/udfs/
H A Dudf_vnops.c1121 caddr_t outbuf; local
1153 outb = outbuf = (char *)kmem_alloc((uint32_t)bufsize, KM_SLEEP);
1155 nd = (struct dirent64 *)outbuf;
1241 ndlen = ((char *)nd - outbuf);
1247 error = uiomove(outbuf, (long)ndlen, UIO_READ, uiop);
1252 kmem_free(outbuf, (uint32_t)bufsize);
/illumos-gate/usr/src/lib/libkmf/plugins/kmf_openssl/common/
H A Dopenssl_spi.c2025 unsigned char *outbuf = NULL; local
2043 /* copy cert data to outbuf */
2044 outbuf = malloc(pcert->Length);
2045 if (outbuf == NULL) {
2048 (void) memcpy(outbuf, pcert->Data, pcert->Length);
2050 outbuf_p = outbuf; /* use a temp pointer; required by openssl */
2216 if (outbuf != NULL) {
2217 free(outbuf);
/illumos-gate/usr/src/uts/common/io/ib/clients/of/sol_uverbs/
H A Dsol_uverbs.c1335 udata.outbuf = (void *)(cmd.response.r_laddr + sizeof (resp));
1337 udata.outbuf = (void *)(cmd.response.r_addr + sizeof (resp));
1420 rc = copyout((void*)&uresp, (void*)udata.outbuf, sizeof (uresp));
1423 "get_context: copyout outbuf (rc=%d)", rc);
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_vnops.c2195 caddr_t outbuf; local
2267 outbuf = kmem_alloc(bufsize, KM_SLEEP);
2268 odp = (struct dirent64 *)outbuf;
2271 outbuf = NULL;
2429 } else if (error = uiomove(outbuf, (long)outcount, UIO_READ, uio)) {
2439 kmem_free(outbuf, bufsize);
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Din.telnetd.c537 krb5_data outbuf; local
707 &outbuf))) {
715 reply_to_client(ap, KRB_RESPONSE, outbuf.data,
716 outbuf.length);
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_vnops.c3918 caddr_t outbuf; local
3980 outbuf = kmem_alloc(bufsize, KM_SLEEP);
3981 odp = (struct dirent64 *)outbuf;
4092 } else if ((error = uiomove(outbuf, (long)outcount, UIO_READ,
4098 kmem_free(outbuf, bufsize);
/illumos-gate/usr/src/cmd/init/
H A Dinit.c2992 char outbuf[BUFSIZ]; local
3013 setbuf(f, &outbuf[0]);
/illumos-gate/usr/src/lib/libscf/common/
H A Dlowlevel.c7165 * outbuf.
7181 * outbuf - Buffer to receive the decoded bytes. It can be the
7183 * outmax - Size of the buffer at outbuf.
7194 scf_decode32(const char *in, size_t inlen, char *outbuf, size_t outmax, argument
7197 char *bufend = outbuf + outmax;
7203 char *out = outbuf;
7304 *outlen = out - outbuf;
/illumos-gate/usr/src/lib/libc/port/
H A Dllib-lc610 size_t *_RESTRICT_KYWD inbytesleft, char **_RESTRICT_KYWD outbuf,

Completed in 215 milliseconds

123456