Home | History | Annotate | Download | only in kern

Lines Matching refs:plen

427 	size_t plen;
430 plen = sun->sun_len - offsetof(struct sockaddr_un, sun_path[0]);
432 len = MIN(len, plen);
440 size_t plen = 0;
447 plen = strlcpy(buf, "unix: ", len);
450 plen = strlcpy(buf, "inet: ", len);
453 plen = strlcpy(buf, "inet6: ", len);
456 plen = strlcpy(buf, "link: ", len);
459 plen = strlcpy(buf, "atalk: ", len);
466 buf += plen;
467 if (plen > len)
470 len -= plen;