Home
last modified time | relevance | path

Searched refs:trd (Results 1 – 3 of 3) sorted by relevance

/linux/security/loadpin/
H A Dloadpin.c309 struct dm_verity_loadpin_trusted_root_digest *trd; in read_trusted_verity_root_digests() local
330 trd = kzalloc_flex(*trd, data, len); in read_trusted_verity_root_digests()
331 if (!trd) { in read_trusted_verity_root_digests()
335 trd->len = len; in read_trusted_verity_root_digests()
337 if (hex2bin(trd->data, d, len)) { in read_trusted_verity_root_digests()
338 kfree(trd); in read_trusted_verity_root_digests()
343 list_add_tail(&trd->node, &dm_verity_loadpin_trusted_root_digests); in read_trusted_verity_root_digests()
360 struct dm_verity_loadpin_trusted_root_digest *trd, *tmp; in read_trusted_verity_root_digests() local
362 list_for_each_entry_safe(trd, tmp, &dm_verity_loadpin_trusted_root_digests, node) { in read_trusted_verity_root_digests()
363 list_del(&trd->node); in read_trusted_verity_root_digests()
[all …]
/linux/drivers/md/
H A Ddm-verity-loadpin.c20 struct dm_verity_loadpin_trusted_root_digest *trd; in is_trusted_verity_target() local
36 list_for_each_entry(trd, &dm_verity_loadpin_trusted_root_digests, node) { in is_trusted_verity_target()
37 if ((trd->len == digest_size) && in is_trusted_verity_target()
38 !memcmp(trd->data, root_digest, digest_size)) { in is_trusted_verity_target()
/linux/drivers/android/
H A Dbinder.c4783 struct binder_transaction_data *trd = &tr.transaction_data; in binder_thread_read() local
4788 size_t trsize = sizeof(*trd); in binder_thread_read()
5036 trd->target.ptr = target_node->ptr; in binder_thread_read()
5037 trd->cookie = target_node->cookie; in binder_thread_read()
5047 trd->target.ptr = 0; in binder_thread_read()
5048 trd->cookie = 0; in binder_thread_read()
5051 trd->code = t->code; in binder_thread_read()
5052 trd->flags = t->flags; in binder_thread_read()
5053 trd->sender_euid = from_kuid(current_user_ns(), t->sender_euid); in binder_thread_read()
5059 trd->sender_pid = in binder_thread_read()
[all …]