Lines Matching defs:entry
23 struct notif_entry *entry;
25 list_for_each_entry(entry, &optee->notif.db, link)
26 if (entry->key == key)
35 struct notif_entry *entry;
41 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
42 if (!entry)
44 init_completion(&entry->c);
45 entry->key = key;
67 list_add_tail(&entry->link, &optee->notif.db);
73 wait_for_completion(&entry->c);
76 list_del(&entry->link);
80 kfree(entry);
88 struct notif_entry *entry;
95 list_for_each_entry(entry, &optee->notif.db, link)
96 if (entry->key == key) {
97 complete(&entry->c);