gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 10 of 21 for funcall:LIST_REMOVE (0.02 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/kern/kern_descrip.c - 60.6KB - 2,238 lines
1360:         mutex_enter(&filelist_lock);
1361:         LIST_REMOVE(fp, f_list);
1362:         mutex_exit(&filelist_lock);
bsd_source/t2ex/network/net/src_bsd/kern/subr_pool.c - 105.3KB - 3,534 lines
519:         while ((ph = LIST_FIRST(pq)) != NULL) {
520:                 LIST_REMOVE(ph, ph_pagelist);
521:                 pool_allocator_free(pp, ph->ph_page);
More results from subr_pool.c
bsd_source/t2ex/network/net/src_bsd/kern/uipc_accf.c - 12.6KB - 401 lines
146:         }
147:         LIST_REMOVE(p, accf_next);
148:         rw_exit(&accept_filter_lock);
bsd_source/t2ex/network/net/src_bsd/kern/uipc_domain.c - 21.1KB - 741 lines
606:                         np = LIST_NEXT(dfp, f_list);
607:                         LIST_REMOVE(dfp, f_list);
608:                         if (error)
bsd_source/t2ex/network/net/src_bsd/kern/uipc_mbuf.c - 57.8KB - 1,910 lines
1821:         /* XXX lock */
1822:         LIST_REMOVE(mo, mo_link);
1823: 
bsd_source/t2ex/network/net/src_bsd/net/bpf.c - 56.1KB - 2,015 lines
510:         mutex_enter(&bpf_mtx);
511:         LIST_REMOVE(d, bd_list);
512:         mutex_exit(&bpf_mtx);
bsd_source/t2ex/network/net/src_bsd/net/if.c - 61.4KB - 2,117 lines
1084: 
1085:         LIST_REMOVE(ifc, ifc_list);
1086:         if_cloners_count--;
bsd_source/t2ex/network/net/src_bsd/net/if_ethersubr.c - 51.3KB - 1,589 lines
1177:         while ((enm = LIST_FIRST(&ec->ec_multiaddrs)) != NULL) {
1178:                 LIST_REMOVE(enm, enm_list);
1179:                 free(enm, M_IFMADDR);
More results from if_ethersubr.c
bsd_source/t2ex/network/net/src_bsd/net/if_tun.c - 33.3KB - 1,241 lines
174:         if (tp)
175:                 LIST_REMOVE(tp, tun_list);
176:         simple_unlock(&tun_softc_lock);
More results from if_tun.c
bsd_source/t2ex/network/net/src_bsd/net/raw_cb.c - 4.0KB - 128 lines
101:         KASSERT(so->so_lock == softnet_lock);  /* XXX */
102:         LIST_REMOVE(rp, rcb_list);             /* remove last reference */
103:         /* sofree drops the socket's lock. */