Home
last modified time | relevance | path

Searched refs:keyp (Results 1 – 12 of 12) sorted by relevance

/Linux-v4.19/security/selinux/ss/
Dsymtab.c14 const char *p, *keyp; in symhash() local
19 keyp = key; in symhash()
20 size = strlen(keyp); in symhash()
21 for (p = keyp; (p - keyp) < size; p++) in symhash()
Davtab.c32 static inline int avtab_hash(struct avtab_key *keyp, u32 mask) in avtab_hash() argument
53 mix(keyp->target_class); in avtab_hash()
54 mix(keyp->target_type); in avtab_hash()
55 mix(keyp->source_type); in avtab_hash()
/Linux-v4.19/fs/nilfs2/
Dbtree.c262 __u64 *keyp, __u64 *ptrp, int ncmax) in nilfs_btree_node_delete() argument
275 if (keyp != NULL) in nilfs_btree_node_delete()
276 *keyp = key; in nilfs_btree_node_delete()
599 __u64 *keyp, __u64 *ptrp) in nilfs_btree_do_lookup_last() argument
628 if (keyp != NULL) in nilfs_btree_do_lookup_last()
629 *keyp = nilfs_btree_node_get_key(node, index); in nilfs_btree_do_lookup_last()
800 int level, __u64 *keyp, __u64 *ptrp) in nilfs_btree_do_insert() argument
809 *keyp, *ptrp, ncblk); in nilfs_btree_do_insert()
820 *keyp, *ptrp, in nilfs_btree_do_insert()
827 int level, __u64 *keyp, __u64 *ptrp) in nilfs_btree_carry_left() argument
[all …]
Ddirect.c165 __u64 *keyp) in nilfs_direct_seek_key() argument
172 *keyp = key; in nilfs_direct_seek_key()
179 static int nilfs_direct_last_key(const struct nilfs_bmap *direct, __u64 *keyp) in nilfs_direct_last_key() argument
192 *keyp = lastkey; in nilfs_direct_last_key()
Dbmap.c197 int nilfs_bmap_seek_key(struct nilfs_bmap *bmap, __u64 start, __u64 *keyp) in nilfs_bmap_seek_key() argument
202 ret = bmap->b_ops->bop_seek_key(bmap, start, keyp); in nilfs_bmap_seek_key()
210 int nilfs_bmap_last_key(struct nilfs_bmap *bmap, __u64 *keyp) in nilfs_bmap_last_key() argument
215 ret = bmap->b_ops->bop_last_key(bmap, keyp); in nilfs_bmap_last_key()
Dbmap.h151 int nilfs_bmap_seek_key(struct nilfs_bmap *bmap, __u64 start, __u64 *keyp);
152 int nilfs_bmap_last_key(struct nilfs_bmap *bmap, __u64 *keyp);
/Linux-v4.19/fs/xfs/scrub/
Dbtree.c139 union xfs_btree_key *keyp; in xchk_btree_rec() local
161 keyp = xfs_btree_key_addr(cur, cur->bc_ptrs[1], keyblock); in xchk_btree_rec()
162 if (cur->bc_ops->diff_two_keys(cur, &key, keyp) < 0) in xchk_btree_rec()
170 keyp = xfs_btree_high_key_addr(cur, cur->bc_ptrs[1], keyblock); in xchk_btree_rec()
171 if (cur->bc_ops->diff_two_keys(cur, keyp, &hkey) < 0) in xchk_btree_rec()
186 union xfs_btree_key *keyp; in xchk_btree_key() local
208 keyp = xfs_btree_key_addr(cur, cur->bc_ptrs[level + 1], keyblock); in xchk_btree_key()
209 if (cur->bc_ops->diff_two_keys(cur, key, keyp) < 0) in xchk_btree_key()
217 keyp = xfs_btree_high_key_addr(cur, cur->bc_ptrs[level + 1], keyblock); in xchk_btree_key()
218 if (cur->bc_ops->diff_two_keys(cur, keyp, key) < 0) in xchk_btree_key()
/Linux-v4.19/fs/fuse/
Dcuse.c216 static int cuse_parse_one(char **pp, char *end, char **keyp, char **valp) in cuse_parse_one() argument
249 *keyp = key; in cuse_parse_one()
/Linux-v4.19/security/smack/
Dsmack_lsm.c4323 struct key *keyp; in smack_key_permission() local
4329 keyp = key_ref_to_ptr(key_ref); in smack_key_permission()
4330 if (keyp == NULL) in smack_key_permission()
4336 if (keyp->security == NULL) in smack_key_permission()
4349 ad.a.u.key_struct.key = keyp->serial; in smack_key_permission()
4350 ad.a.u.key_struct.key_desc = keyp->description; in smack_key_permission()
4356 rc = smk_access(tkp, keyp->security, request, &ad); in smack_key_permission()
4357 rc = smk_bu_note("key access", tkp, keyp->security, request, rc); in smack_key_permission()
/Linux-v4.19/drivers/net/hyperv/
Drndis_filter.c729 u8 *keyp; in rndis_filter_set_rss_param() local
764 keyp = (u8 *)((unsigned long)rssp + rssp->hashkey_offset); in rndis_filter_set_rss_param()
765 memcpy(keyp, rss_key, NETVSC_HASH_KEYLEN); in rndis_filter_set_rss_param()
/Linux-v4.19/fs/
Ddax.c148 int sync, void *keyp) in wake_exceptional_entry_func() argument
150 struct exceptional_entry_key *key = keyp; in wake_exceptional_entry_func()
/Linux-v4.19/fs/xfs/libxfs/
Dxfs_bmap.c271 xfs_bmbt_key_t *prevp, *keyp; in xfs_check_block() local
278 keyp = XFS_BMBT_KEY_ADDR(mp, block, i); in xfs_check_block()
282 be64_to_cpu(keyp->br_startoff)); in xfs_check_block()
284 prevp = keyp; in xfs_check_block()