Lines Matching defs:ls
1882 knote_acquire(struct knote *kn, struct klist *klist, int ls)
1893 klist_unlock(klist, ls);
1944 int ls;
1946 ls = klist_lock(list);
1948 klist_unlock(list, ls);
2233 int ls;
2235 ls = klist_lock(klist);
2237 klist_unlock(klist, ls);
2251 int ls;
2253 ls = klist_lock(klist);
2255 klist_unlock(klist, ls);
2279 int ls;
2283 ls = klist_lock(list);
2287 if (!knote_acquire(kn, list, ls)) {
2290 ls = klist_lock(list);
2294 klist_unlock(list, ls);
2306 ls = klist_lock(list);
2308 klist_unlock(list, ls);
2314 int ls = 0;
2317 ls = list->kl_ops->klo_lock(list->kl_arg);
2320 ls = splhigh();
2322 return ls;
2326 klist_unlock(struct klist *list, int ls)
2329 list->kl_ops->klo_unlock(list->kl_arg, ls);
2331 splx(ls);