Home
last modified time | relevance | path

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

/src/crypto/heimdal/lib/hdb/
H A Dhdb-ldap.c148 LDAP__setmod(LDAPMod *** modlist, int modop, const char *attribute, in LDAP__setmod() argument
153 if (*modlist == NULL) { in LDAP__setmod()
154 *modlist = (LDAPMod **)ber_memcalloc(1, sizeof(LDAPMod *)); in LDAP__setmod()
155 if (*modlist == NULL) in LDAP__setmod()
159 for (cMods = 0; (*modlist)[cMods] != NULL; cMods++) { in LDAP__setmod()
160 if ((*modlist)[cMods]->mod_op == modop && in LDAP__setmod()
161 strcasecmp((*modlist)[cMods]->mod_type, attribute) == 0) { in LDAP__setmod()
168 if ((*modlist)[cMods] == NULL) { in LDAP__setmod()
171 *modlist = (LDAPMod **)ber_memrealloc(*modlist, in LDAP__setmod()
173 if (*modlist == NULL) in LDAP__setmod()
[all …]
/src/sys/kern/
H A Dkern_linker.c138 typedef TAILQ_HEAD(, modlist) modlisthead_t;
139 struct modlist { struct
140 TAILQ_ENTRY(modlist) link; /* chain together all modules */
145 typedef struct modlist *modlist_t; argument
1612 mod = malloc(sizeof(struct modlist), M_LINKER, M_NOWAIT | M_ZERO); in modlist_newmodule()
/src/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpression.cpp635 ModuleList &modlist = target.GetImages(); in Evaluate_DW_OP_entry_value() local
647 Function *callee_func = call_edge->GetCallee(modlist, parent_exe_ctx); in Evaluate_DW_OP_entry_value()
657 if (edge->GetCallee(modlist, parent_exe_ctx) == current_func) { in Evaluate_DW_OP_entry_value()