Home
last modified time | relevance | path

Searched refs:cip (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/media/usb/pvrusb2/
H A Dpvrusb2-sysfs.c73 struct pvr2_sysfs_ctl_item *cip; in show_name() local
75 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_name); in show_name()
76 name = pvr2_ctrl_get_desc(cip->cptr); in show_name()
78 cip->chptr, cip->ctl_id, name); in show_name()
87 struct pvr2_sysfs_ctl_item *cip; in show_type() local
90 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_type); in show_type()
91 tp = pvr2_ctrl_get_type(cip->cptr); in show_type()
100 cip->chptr, cip->ctl_id, name); in show_type()
108 struct pvr2_sysfs_ctl_item *cip; in show_min() local
110 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_min); in show_min()
[all …]
/linux/drivers/crypto/
H A Dgeode-aes.c129 tctx->fallback.cip->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK; in geode_setkey_cip()
130 tctx->fallback.cip->base.crt_flags |= in geode_setkey_cip()
133 return crypto_cipher_setkey(tctx->fallback.cip, key, len); in geode_setkey_cip()
169 crypto_cipher_encrypt_one(tctx->fallback.cip, out, in); in geode_encrypt()
184 crypto_cipher_decrypt_one(tctx->fallback.cip, out, in); in geode_decrypt()
197 tctx->fallback.cip = crypto_alloc_cipher(name, 0, in fallback_init_cip()
200 if (IS_ERR(tctx->fallback.cip)) { in fallback_init_cip()
202 return PTR_ERR(tctx->fallback.cip); in fallback_init_cip()
212 crypto_free_cipher(tctx->fallback.cip); in fallback_exit_cip()
H A Dgeode-aes.h53 struct crypto_cipher *cip; member
/linux/fs/xfs/
H A Dxfs_iops.c319 struct xfs_inode *cip; in xfs_vn_lookup() local
327 error = xfs_lookup(XFS_I(dir), &name, &cip, NULL); in xfs_vn_lookup()
329 inode = VFS_I(cip); in xfs_vn_lookup()
435 struct xfs_inode *cip = NULL; in xfs_vn_symlink() local
444 error = xfs_symlink(idmap, XFS_I(dir), &name, symname, mode, &cip); in xfs_vn_symlink()
448 inode = VFS_I(cip); in xfs_vn_symlink()
454 xfs_setup_iops(cip); in xfs_vn_symlink()
457 xfs_finish_inode_setup(cip); in xfs_vn_symlink()
461 xfs_finish_inode_setup(cip); in xfs_vn_symlink()
463 xfs_irele(cip); in xfs_vn_symlink()
/linux/tools/testing/selftests/net/
H A Dtls.c2617 char cip[3][128]; in TEST_F() local
2629 n = recv(self->cfd, cip[i], sizeof(cip[i]), 0); in TEST_F()
2633 cip[2][n - 1]++; in TEST_F()
2634 EXPECT_EQ(send(self->fd2, cip[i], n, 0), n); in TEST_F()
2652 char cip[128]; in TEST_F() local
2663 n = recv(self->cfd, cip, sizeof(cip), 0); in TEST_F()
2665 EXPECT_EQ(send(self->fd2, cip, n, 0), n); in TEST_F()
2668 n = recv(self->cfd, cip, sizeo in TEST_F()
[all...]