Home | History | Annotate | Download | only in libpcap

Lines Matching refs:description

131     u_int flags, const char *description, char *errbuf)
232 if (description != NULL) {
234 * We have a description for this interface.
236 curdev->description = strdup(description);
237 if (curdev->description == NULL) {
248 curdev->description = NULL;
485 const char *description, char *errbuf)
489 return (add_or_find_if(&curdev, devlist, name, flags, description,
528 * Free the description string, if any.
530 if (curdev->description != NULL)
531 free(curdev->description);