Searched refs:linkhead (Results 1 – 2 of 2) sorted by relevance
3376 linkhead_t *linkhead; in get_cached_links() local3381 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 …]
209 typedef struct linkhead { struct214 struct linkhead *nexthead; argument