Searched refs:sc_next (Results 1 – 12 of 12) sorted by relevance
/freebsd/sbin/bectl/ |
H A D | bectl_list.c | 348 struct sort_column sc_prev, sc_next; in prop_list_sort() local 363 nvpair_value_nvlist(nvp, &sc_next.nvl); in prop_list_sort() 364 nvlist_lookup_string(sc_next.nvl, "name", &sc_next.name); in prop_list_sort() 365 nvlist_lookup_string(sc_next.nvl, property, &sc_next.val); in prop_list_sort() 375 rval = strtoull(sc_next.val, NULL, 10); in prop_list_sort() 379 sc_prev = sc_next; in prop_list_sort() 385 if ((strcmp(sc_prev.val, sc_next.val) < 0 && reverse) || in prop_list_sort() 386 (strcmp(sc_prev.val, sc_next.val) > 0 && !reverse)) in prop_list_sort() 387 sc_prev = sc_next; in prop_list_sort()
|
/freebsd/lib/libc/rpc/ |
H A D | svc.c | 75 struct svc_callout *sc_next; member 215 s->sc_next = svc_head; in svc_reg() 247 svc_head = s->sc_next; in svc_unreg() 249 prev->sc_next = s->sc_next; in svc_unreg() 251 s->sc_next = NULL; in svc_unreg() 291 s->sc_next = svc_head; in svc_register() 314 svc_head = s->sc_next; in svc_unregister() 316 prev->sc_next = s->sc_next; in svc_unregister() 318 s->sc_next = NULL; in svc_unregister() 338 for (s = svc_head; s != NULL; s = s->sc_next) { in svc_find() [all …]
|
/freebsd/sys/contrib/openzfs/cmd/zfs/ |
H A D | zfs_iter.c | 195 (*sc)->sc_last->sc_next = col; in zfs_add_sort_column() 208 col = sc->sc_next; in zfs_free_sort_columns() 236 sc = sc->sc_next; in zfs_sort_only_by_fast() 349 for (psc = sc; psc != NULL; psc = psc->sc_next) { in zfs_sort() 481 sortcol = sortcol->sc_next; in zfs_for_each()
|
H A D | zfs_iter.h | 36 struct zfs_sort_column *sc_next; member
|
H A D | zfs_main.c | 2869 for (; sortcol != NULL; sortcol = sortcol->sc_next) { in us_compare()
|
/freebsd/lib/libcasper/libcasper/ |
H A D | service.c | 74 TAILQ_ENTRY(service_connection) sc_next; 157 TAILQ_INSERT_TAIL(&service->s_connections, sconn, sc_next); in service_connection_add() 169 TAILQ_REMOVE(&service->s_connections, sconn, sc_next); in service_connection_remove() 218 sconn = TAILQ_NEXT(sconn, sc_next); in service_connection_next()
|
/freebsd/sys/geom/gate/ |
H A D | g_gate.h | 98 LIST_ENTRY(g_gate_softc) sc_next; /* P: g_gate_list_mtx */
|
/freebsd/sys/netpfil/pf/ |
H A D | pflow.c | 197 CK_LIST_FOREACH(sc, &V_pflowif_list, sc_next) { in pflow_jail_remove() 421 CK_LIST_INSERT_HEAD(&V_pflowif_list, pflowif, sc_next); in pflow_create() 446 CK_LIST_FOREACH(sc, &V_pflowif_list, sc_next) { in pflow_destroy() 454 CK_LIST_REMOVE(sc, sc_next); in pflow_destroy() 773 CK_LIST_FOREACH(sc, &V_pflowif_list, sc_next) { in export_pflow() 1322 CK_LIST_FOREACH(sc, &V_pflowif_list, sc_next) { in pflow_nl_list() 1469 CK_LIST_FOREACH(sc, &V_pflowif_list, sc_next) { in pflow_nl_get() 1722 CK_LIST_FOREACH(sc, &V_pflowif_list, sc_next) { in pflow_nl_set()
|
/freebsd/sys/net/ |
H A D | pflow.h | 268 CK_LIST_ENTRY(pflow_softc) sc_next;
|
/freebsd/sys/netinet/ |
H A D | ip_carp.c | 141 LIST_ENTRY(carp_softc) sc_next; /* On the global list. */ 1111 LIST_FOREACH(sc, &carp_list, sc_next) in carp_send_ad_all() 2128 LIST_INSERT_HEAD(&carp_list, sc, sc_next); in carp_alloc() 2165 LIST_REMOVE(sc, sc_next); in carp_destroy() 2675 LIST_FOREACH(sc, &carp_list, sc_next) { in carp_allow_sysctl()
|
/freebsd/sbin/fsck_ffs/ |
H A D | suj.c | 96 LIST_ENTRY(suj_cg) sc_next; 186 LIST_FOREACH(sc, hd, sc_next) in cg_lookup() 198 LIST_INSERT_HEAD(hd, sc, sc_next); in cg_lookup() 1636 LIST_FOREACH(scg, &cghash[i], sc_next) in cg_apply()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_string.c | 1822 struct archive_string_conv *sc_next; in archive_string_conversion_free() local 1824 for (sc = a->sconv; sc != NULL; sc = sc_next) { in archive_string_conversion_free() 1825 sc_next = sc->next; in archive_string_conversion_free()
|