Lines Matching refs:ll
246 list_T *ll; in list_free_nonref() local
249 for (ll = first_list; ll != NULL; ll = ll->lv_used_next) in list_free_nonref()
250 if ((ll->lv_copyID & COPYID_MASK) != (copyID & COPYID_MASK) in list_free_nonref()
251 && ll->lv_watch == NULL) in list_free_nonref()
256 list_free_contents(ll); in list_free_nonref()
280 list_T *ll, *ll_next; in list_free_items() local
282 for (ll = first_list; ll != NULL; ll = ll_next) in list_free_items()
284 ll_next = ll->lv_used_next; in list_free_items()
285 if ((ll->lv_copyID & COPYID_MASK) != (copyID & COPYID_MASK) in list_free_items()
286 && ll->lv_watch == NULL) in list_free_items()
291 list_free_list(ll); in list_free_items()