Lines Matching refs:tailp
148 use (Dwfl_Module *mod, Dwfl_Module **tailp, Dwfl *dwfl)
150 mod->next = *tailp;
151 *tailp = mod;
169 Dwfl_Module **tailp = &dwfl->modulelist, **prevp = tailp;
180 return use (m, tailp, dwfl);
184 tailp = &m->next;
204 return use (mod, tailp, dwfl);
221 Dwfl_Module **tailp = &dwfl->modulelist;
222 while (*tailp != NULL)
224 Dwfl_Module *m = *tailp;
233 *tailp = m->next;
237 tailp = &m->next;