Lines Matching refs:entry
486 struct tomoyo_profile *entry;
493 entry = kzalloc(sizeof(*entry), GFP_NOFS | __GFP_NOWARN);
497 if (!ptr && tomoyo_memory_ok(entry)) {
498 ptr = entry;
510 entry = NULL;
514 kfree(entry);
829 * tomoyo_same_manager - Check for duplicated "struct tomoyo_manager" entry.
844 * tomoyo_update_manager_entry - Add a manager entry.
1028 * tomoyo_same_task_acl - Check for duplicated "struct tomoyo_task_acl" entry.
1377 * tomoyo_print_entry - Print an ACL entry.
1380 * @acl: Pointer to an ACL entry.
2057 struct tomoyo_query entry = { };
2089 entry.query = tomoyo_init_log(r, len, fmt, args);
2091 if (!entry.query)
2093 entry.query_len = strlen(entry.query) + 1;
2095 tomoyo_add_entry(r->domain, entry.query);
2098 len = kmalloc_size_roundup(entry.query_len);
2099 entry.domain = r->domain;
2106 entry.serial = tomoyo_serial++;
2107 entry.retry = r->retry;
2109 list_add_tail(&entry.list, &tomoyo_query_list);
2115 while (entry.timer < 10) {
2118 (tomoyo_answer_wait, entry.answer ||
2121 entry.timer++;
2124 list_del(&entry.list);
2127 switch (entry.answer) {
2141 kfree(entry.query);