Home
last modified time | relevance | path

Searched refs:linkhead (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/devfsadm/
H A Ddevfsadm.c3376 linkhead_t *linkhead; in get_cached_links() local
3381 for (linkhead = headlinkhead; linkhead != NULL; in get_cached_links()
3382 linkhead = linkhead->nexthead) { in get_cached_links()
3383 if (strcmp(linkhead->dir_re, dir_re) == 0) { in get_cached_links()
3384 return (linkhead); in get_cached_links()
3392 linkhead = s_malloc(sizeof (linkhead_t)); in get_cached_links()
3393 linkhead->nexthead = headlinkhead; in get_cached_links()
3394 headlinkhead = linkhead; in get_cached_links()
3395 linkhead->dir_re = s_strdup(dir_re); in get_cached_links()
3397 if ((n = regcomp(&(linkhead->dir_re_compiled), dir_re, in get_cached_links()
[all …]
H A Ddevfsadm_impl.h209 typedef struct linkhead { struct
214 struct linkhead *nexthead; argument