Home
last modified time | relevance | path

Searched refs:ndpr (Results 1 – 3 of 3) sorted by relevance

/xnu-10063.101.15/bsd/netinet6/
H A Dnd6_rtr.c3062 ndpr_addref(struct nd_prefix *ndpr) in ndpr_addref() argument
3064 NDPR_REF_LOCK_SPIN(ndpr); in ndpr_addref()
3065 if (++ndpr->ndpr_refcount == 0) { in ndpr_addref()
3066 panic("%s: ndpr %p wraparound refcnt", __func__, ndpr); in ndpr_addref()
3068 } else if (ndpr->ndpr_trace != NULL) { in ndpr_addref()
3069 (*ndpr->ndpr_trace)(ndpr, TRUE); in ndpr_addref()
3071 NDPR_REF_UNLOCK(ndpr); in ndpr_addref()
3075 ndpr_remref(struct nd_prefix *ndpr) in ndpr_remref() argument
3077 NDPR_REF_LOCK_SPIN(ndpr); in ndpr_remref()
3078 if (ndpr->ndpr_refcount == 0) { in ndpr_remref()
[all …]
H A Dnd6.h982 extern int in6_init_prefix_ltimes(struct nd_prefix *ndpr);
/xnu-10063.101.15/tools/lldbmacros/
H A Dnet.py1125 ndpr = kern.GetValueFromAddress(cmd_args[0], 'nd_prefix_dbg *')
1127 out_string += ndpr_summary_format_string.format("Total holds : ", ndpr.ndpr_refhold_cnt)
1128 out_string += ndpr_summary_format_string.format("Total releases : ", ndpr.ndpr_refrele_cnt)
1133 kgm_pc = ndpr.ndpr_refhold[cnt].pc[ix]
1136 … out_string += "\nHold [" + str(int(cnt)) + "] (thread " + hex(ndpr.ndpr_refhold[cnt].th) + "):\n"
1146 kgm_pc = ndpr.ndpr_refrele[cnt].pc[ix]
1149 …out_string += "\nRelease [" + str(int(cnt)) + "] (thread " + hex(ndpr.ndpr_refrele[cnt].th) + "):\…