Searched defs:extbuf (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libsocket/inet/
H A Dinet6_opt.c43 #define bufpos(p) ((p) - (uint8_t *)extbuf)
47 * extension header. If extbuf is not NULL then it initializes its length
51 inet6_opt_init(void *extbuf, socklen_t extlen) argument
53 if (extbuf && ((extlen < 0) || (extlen % 8))) {
57 if (extbuf) {
58 *(uint8_t *)extbuf = 0;
59 *((uint8_t *)extbuf + 1) = extlen/8 - 1;
71 inet6_opt_append(void *extbuf, socklen_t extlen, int offset, uint8_t type, argument
84 if (extbuf) {
91 extlen = MIN(extlen, (*((uint8_t *)extbuf
143 inet6_opt_finish(void *extbuf, socklen_t extlen, int offset) argument
212 inet6_opt_next(void *extbuf, socklen_t extlen, int offset, uint8_t *typep, socklen_t *lenp, void **databufp) argument
273 inet6_opt_find(void *extbuf, socklen_t extlen, int offset, uint8_t type, socklen_t *lenp, void **databufp) argument
[all...]
/illumos-gate/usr/src/cmd/fs.d/udfs/fsck/
H A Dpass1.c80 static uint8_t *extbuf; variable
201 if (extbuf) {
202 free(extbuf);
203 extbuf = NULL;
249 if (extbuf)
250 free(extbuf);
251 extbuf = (uint8_t *)malloc(nb);
252 if (extbuf == NULL)
254 if (bread(fsreadfd, (char *)extbuf,
261 aep = (struct alloc_ext_desc *)extbuf;
[all...]
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/emlxs/
H A Demlxs_dfc.c4616 uint8_t *extbuf = NULL; local
4683 extbuf = (uint8_t *)kmem_zalloc(extsize, KM_SLEEP);
4686 bcopy((void *)dfc->buf3, (void *)extbuf,
5132 if (extbuf) {
5133 mbq->extbuf = extbuf;
5173 bcopy((void *)extbuf, (void *)dfc->buf4, dfc->buf4_size);
5182 if (extbuf) {
5183 kmem_free(extbuf, extsize);
/illumos-gate/usr/src/uts/common/sys/fibre-channel/fca/emlxs/
H A Demlxs_mbox.h4676 uint8_t *extbuf; /* ptr to mailbox ext buffer */ member in struct:__anon7429::__anon7430::emlxs_mbq

Completed in 89 milliseconds