Home
last modified time | relevance | path

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

/external/toybox/toys/pending/
Dmodprobe.c143 struct module_s *modentry; in get_mod() local
151 modentry = (struct module_s *) temp->arg; in get_mod()
152 if (!strcmp(modentry->name, name)) return modentry; in get_mod()
155 modentry = xzalloc(sizeof(*modentry)); in get_mod()
156 modentry->name = xstrdup(name); in get_mod()
157 llist_add(&TT.dbase[hash], modentry); in get_mod()
158 return modentry; in get_mod()