Lines Matching defs:item
812 * and the sender had none no item for it will be
887 struct kdbus_item *items, *item;
963 item = hello->items;
965 item->size = offsetof(struct kdbus_item, str) + m + 1;
966 item->type = KDBUS_ITEM_CONN_DESCRIPTION;
967 memcpy(item->str, name, m + 1);
968 item = KDBUS_ITEM_NEXT(item);
971 item->size = offsetof(struct kdbus_item, creds) + sizeof(struct kdbus_creds);
972 item->type = KDBUS_ITEM_CREDS;
973 item->creds = b->fake_creds;
975 item = KDBUS_ITEM_NEXT(item);
979 item->size = offsetof(struct kdbus_item, pids) + sizeof(struct kdbus_pids);
980 item->type = KDBUS_ITEM_PIDS;
981 item->pids = b->fake_pids;
983 item = KDBUS_ITEM_NEXT(item);
987 item->size = offsetof(struct kdbus_item, str) + l + 1;
988 item->type = KDBUS_ITEM_SECLABEL;
989 memcpy(item->str, b->fake_label, l+1);
1022 KDBUS_FOREACH(item, items, hello->items_size) {
1023 switch (item->type) {
1025 bloom = &item->bloom_parameter;
1797 struct kdbus_item *item;
1811 KDBUS_ITEM_FOREACH(item, info, items)
1812 if (item->type == KDBUS_ITEM_MAKE_NAME) {
1813 r = free_and_strdup(&n, item->str);