Lines Matching refs:ae
36 struct autoexec *ae; in find_autoexec() local
44 SLIST_FOREACH(ae, &autos, next) { in find_autoexec()
45 if (fnmatch(ae->pattern, fname, 0) == 0) { in find_autoexec()
54 pfl[used++] = ae->fp; in find_autoexec()
67 struct autoexec *ae; in add_autoexec() local
76 ae = malloc(sizeof(*ae)); in add_autoexec()
77 if (ae == NULL) in add_autoexec()
79 ae->fp = fp; in add_autoexec()
80 ae->pattern = strdup(pattern); in add_autoexec()
81 if (ae->pattern == NULL) { in add_autoexec()
82 free(ae); in add_autoexec()
85 SLIST_INSERT_HEAD(&autos, ae, next); in add_autoexec()