Lines Matching refs:watches
42 struct list_head wlist; /* entry in parent->watches list */
47 struct list_head watches; /* anchor for audit_watch->wlist */
60 WARN_ON(!list_empty(&parent->watches));
146 INIT_LIST_HEAD(&parent->watches);
254 /* Run all of the watches on this parent looking for the one that
256 list_for_each_entry_safe(owatch, nextw, &parent->watches, wlist) {
316 list_add(&nwatch->wlist, &parent->watches);
321 /* Remove all watches & rules associated with a parent that is going away. */
329 list_for_each_entry_safe(w, nextw, &parent->watches, wlist) {
347 /* Get path information necessary for adding watches. */
373 list_for_each_entry(w, &parent->watches, wlist) {
393 list_add(&watch->wlist, &parent->watches);
461 if (list_empty(&parent->watches))