Home | History | Annotate | Download | only in daemon

Lines Matching refs:entry

105 	struct cookie_entry * entry = xmalloc(sizeof(struct cookie_entry));
107 entry->value = cookie;
108 entry->name = xmalloc(PATH_MAX + 1);
110 err = lookup_dcookie(cookie, entry->name, PATH_MAX);
115 free(entry->name);
116 entry->name = NULL;
117 entry->ignored = 0;
119 entry->ignored = is_image_ignored(entry->name);
122 return entry;
137 struct cookie_entry * entry;
143 entry = list_entry(pos, struct cookie_entry, list);
144 if (entry->value == cookie)
149 entry = create_cookie(cookie);
150 list_add(&entry->list, &hashes[hash]);
152 return entry->name;
160 struct cookie_entry * entry;
166 entry = list_entry(pos, struct cookie_entry, list);
167 if (entry->value == cookie)
171 entry = create_cookie(cookie);
172 list_add(&entry->list, &hashes[hash]);
174 return entry->ignored;
182 struct cookie_entry * entry;
191 entry = list_entry(pos, struct cookie_entry, list);
192 if (entry->value == cookie) {
193 if (!entry->name)
195 return entry->name;