Lines Matching defs:head
514 struct tomoyo_shared_acl_head head;
542 struct tomoyo_shared_acl_head head;
549 struct tomoyo_acl_head head;
555 struct tomoyo_acl_head head;
561 struct tomoyo_acl_head head;
653 struct tomoyo_shared_acl_head head;
699 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MANUAL_TASK_ACL */
710 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_ACL */
720 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_NUMBER_ACL */
729 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MKDEV_ACL */
741 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH2_ACL */
749 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MOUNT_ACL */
758 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_ENV_ACL */
764 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_INET_ACL */
773 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_UNIX_ACL */
794 void (*read)(struct tomoyo_io_buffer *head);
795 int (*write)(struct tomoyo_io_buffer *head);
850 struct tomoyo_acl_head head;
860 struct tomoyo_acl_head head;
867 struct tomoyo_acl_head head;
971 void tomoyo_close_control(struct tomoyo_io_buffer *head);
1025 ssize_t tomoyo_read_control(struct tomoyo_io_buffer *head, char __user *buffer,
1027 ssize_t tomoyo_write_control(struct tomoyo_io_buffer *head,
1055 void tomoyo_notify_gc(struct tomoyo_io_buffer *head, const bool is_register);
1062 void tomoyo_read_log(struct tomoyo_io_buffer *head);
1180 atomic_dec(&ptr->head.users);
1194 atomic_dec(&cond->head.users);
1207 atomic_dec(&group->head.users);
1280 * @head: the head for your list.
1282 #define list_for_each_cookie(pos, head) \
1284 pos = srcu_dereference((head)->next, &tomoyo_ss); \
1285 for ( ; pos != (head); pos = srcu_dereference(pos->next, &tomoyo_ss))