Lines Matching defs:nb
131 struct netbuf *nb = NULL;
211 struct netbuf *nb;
261 nb = get_server_addr(host, NFS_PROGRAM, nfsver,
271 return (nb);
349 struct netbuf *nb = NULL;
366 nb = (struct netbuf *)malloc(sizeof (struct netbuf));
367 if (nb == NULL) {
371 nb->buf = (char *)malloc(tbind->addr.maxlen);
372 if (nb->buf == NULL) {
374 free(nb);
375 nb = NULL;
378 (void) memcpy(nb->buf, tbind->addr.buf, tbind->addr.len);
379 nb->len = tbind->addr.len;
380 nb->maxlen = tbind->addr.maxlen;
385 return (nb);