Home
last modified time | relevance | path

Searched refs:next_node (Results 1 – 14 of 14) sorted by relevance

/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-procfs-list.c70 void *next_node; in procfs_list_next_node() local
74 next_node = list_head(&procfs_list->pl_list); in procfs_list_next_node()
76 next_node = list_next(&procfs_list->pl_list, in procfs_list_next_node()
79 if (next_node != NULL) { in procfs_list_next_node()
80 cursor->cached_node = next_node; in procfs_list_next_node()
94 return (next_node); in procfs_list_next_node()
/freebsd/contrib/ldns/
H A Ddnssec_sign.c763 ldns_rbnode_t *next_node = NULL; local
770 next_node = node;
772 if (next_node == LDNS_RBTREE_NULL) {
775 next_name = (ldns_dnssec_name *)next_node->data;
779 next_node = ldns_rbtree_next(next_node);
783 return next_node;
791 ldns_rbnode_t *first_node, *cur_node, *next_node; local
823 next_node = ldns_dnssec_name_node_next_nonglue(
826 next_node = NULL;
829 while (cur_node && next_node) {
[all …]
H A Ddnssec_zone.c1135 ldns_rbnode_t *cur_node, *next_node, *new_node; local
1152 next_node = ldns_rbtree_next(cur_node);
1155 while (next_node != LDNS_RBTREE_NULL &&
1156 next_node->data &&
1157 ((ldns_dnssec_name *)next_node->data)->is_glue
1159 next_node = ldns_rbtree_next(next_node);
1162 if (next_node == LDNS_RBTREE_NULL) {
1163 next_node = ldns_rbtree_first(zone->names);
1165 if (! cur_node->data || ! next_node->data) {
1169 next_name = ((ldns_dnssec_name *)next_node->data)->name;
[all …]
H A Dradix.c645 ldns_radix_node_t* cur_node, *next_node; in ldns_radix_join() local
665 next_node = ldns_radix_next(cur_node); in ldns_radix_join()
670 cur_node = next_node; in ldns_radix_join()
/freebsd/contrib/ntp/include/
H A Dntp_prio_q.h46 void *next_node(void *my_node);
/freebsd/crypto/krb5/src/lib/krb5/keytab/
H A Dkt_memory.c145 krb5_mkt_list_node *node, *next_node; in krb5int_mkt_finalize() local
150 for (node = krb5int_mkt_list; node; node = next_node) { in krb5int_mkt_finalize()
151 next_node = node->next; in krb5int_mkt_finalize()
/freebsd/sys/contrib/openzfs/cmd/zpool/
H A Dzpool_iter.c223 zpool_node_t *node, *next_node; in pool_list_iter() local
226 for (node = avl_first(&zlp->zl_avl); node != NULL; node = next_node) { in pool_list_iter()
227 next_node = AVL_NEXT(&zlp->zl_avl, node); in pool_list_iter()
/freebsd/contrib/ntp/ntpd/
H A Dntp_prio_q.c108 next_node( in next_node() function
/freebsd/usr.sbin/bsnmpd/modules/snmp_netgraph/
H A Dsnmp_netgraph.c809 ng_ID_t next_node; in ng_rmhook_tee_id() local
830 next_node = 0; in ng_rmhook_tee_id()
834 next_node = hooklist->link[i].nodeinfo.id; in ng_rmhook_tee_id()
837 next_node = hooklist->link[i].nodeinfo.id; in ng_rmhook_tee_id()
849 if ((node = next_node) == 0) in ng_rmhook_tee_id()
/freebsd/sys/dev/drm2/
H A Ddrm_mm.c107 struct drm_mm_node *next_node = in drm_mm_hole_node_end() local
111 return next_node->start; in drm_mm_hole_node_end()
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_ucast_dfsssp.c727 cdg_node_t *current = start_node, *next_node = NULL, *tmp = NULL; in search_cycle_in_channel_dep_graph() local
733 next_node = NULL; in search_cycle_in_channel_dep_graph()
736 next_node = link->node; in search_cycle_in_channel_dep_graph()
745 if (next_node) { in search_cycle_in_channel_dep_graph()
746 next_node->pre = current; in search_cycle_in_channel_dep_graph()
747 current = next_node; in search_cycle_in_channel_dep_graph()
/freebsd/contrib/bsnmp/lib/
H A Dsnmpagent.c291 next_node(const struct snmp_value *value, int *pnext) in next_node() function
341 if ((tp = next_node(inb, &next)) == NULL) in do_getnext()
/freebsd/sys/dev/ocs_fc/
H A Docs_domain.c867 ocs_node_t *next_node = NULL; in __ocs_domain_wait_attach() local
896 ocs_list_foreach_safe(&sport->node_list, node, next_node) { in __ocs_domain_wait_attach()
/freebsd/contrib/ntp/
H A DCommitLog[all...]