HomeSort by: relevance | last modified time | path
    Searched refs:IFDESCRSIZE (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/net/
if.c 3330 if (ifr->ifr_buflen > IFDESCRSIZE)
3337 descr = kmem_zalloc(IFDESCRSIZE, KM_SLEEP);
3339 * copy (IFDESCRSIZE - 1) bytes to ensure
3342 error = copyin(ifr->ifr_buf, descr, IFDESCRSIZE - 1);
3344 kmem_free(descr, IFDESCRSIZE);
3350 kmem_free(ifp->if_description, IFDESCRSIZE);
3362 if (ifr->ifr_buflen < IFDESCRSIZE)
3365 error = copyout(descr, ifr->ifr_buf, IFDESCRSIZE);
if.h 81 #define IFDESCRSIZE 64
  /src/sbin/ifconfig/
ifconfig.c 1285 char ifdescr[IFDESCRSIZE];
1500 if (len > IFDESCRSIZE)

Completed in 17 milliseconds