Searched refs:iname (Results 1 - 21 of 21) sorted by relevance

/linux-master/arch/mips/fw/arc/
H A Didentify.c95 const char *iname; local
102 iname = "Unknown";
104 iname = (char *) (long) p->iname;
106 printk("ARCH: %s\n", iname);
107 mach = string_to_mach(iname);
/linux-master/fs/crypto/
H A Dfname.c85 * @iname: the filename to encrypt
87 * @olen: size of the encrypted filename. It must be at least @iname->len.
92 int fscrypt_fname_encrypt(const struct inode *inode, const struct qstr *iname, argument
107 if (WARN_ON_ONCE(olen < iname->len))
109 memcpy(out, iname->name, iname->len);
110 memset(out + iname->len, 0, olen - iname->len);
141 * @iname: the encrypted filename to decrypt
148 const struct fscrypt_str *iname,
147 fname_decrypt(const struct inode *inode, const struct fscrypt_str *iname, struct fscrypt_str *oname) argument
363 fscrypt_fname_disk_to_usr(const struct inode *inode, u32 hash, u32 minor_hash, const struct fscrypt_str *iname, struct fscrypt_str *oname) argument
438 fscrypt_setup_filename(struct inode *dir, const struct qstr *iname, int lookup, struct fscrypt_name *fname) argument
[all...]
H A Dhooks.c267 struct qstr iname = QSTR_INIT(target, len); local
290 err = fscrypt_fname_encrypt(inode, &iname, sd->encrypted_path,
/linux-master/fs/ceph/
H A Dcrypto.c268 struct qstr iname; local
275 iname.name = d_name->name;
280 (iname.name[0] == '_')) {
281 dir = parse_longname(parent, iname.name, &name_len);
284 iname.name++; /* skip initial '_' */
286 iname.len = name_len;
300 if (!fscrypt_fname_encrypted_size(dir, iname.len, NAME_MAX, &len)) {
313 ret = fscrypt_fname_encrypt(dir, &iname, cryptbuf, len);
386 struct fscrypt_str iname; local
446 iname
[all...]
/linux-master/include/linux/
H A Dfscrypt.h394 int fscrypt_fname_encrypt(const struct inode *inode, const struct qstr *iname,
398 int fscrypt_setup_filename(struct inode *inode, const struct qstr *iname,
411 const struct fscrypt_str *iname,
661 const struct qstr *iname,
668 fname->usr_fname = iname;
669 fname->disk_name.name = (unsigned char *)iname->name;
670 fname->disk_name.len = iname->len;
692 const struct fscrypt_str *iname,
660 fscrypt_setup_filename(struct inode *dir, const struct qstr *iname, int lookup, struct fscrypt_name *fname) argument
690 fscrypt_fname_disk_to_usr(const struct inode *inode, u32 hash, u32 minor_hash, const struct fscrypt_str *iname, struct fscrypt_str *oname) argument
H A Dfs.h2614 const char iname[]; member in struct:filename
2616 static_assert(offsetof(struct filename, iname) % sizeof(long) == 0);
/linux-master/fs/ext4/
H A Dcrypto.c22 int ext4_fname_setup_filename(struct inode *dir, const struct qstr *iname, argument
28 err = fscrypt_setup_filename(dir, iname, lookup, &name);
35 err = ext4_fname_setup_ci_filename(dir, iname, fname);
H A Dext4.h2745 const struct qstr *iname,
2753 int ext4_fname_setup_filename(struct inode *dir, const struct qstr *iname,
2765 const struct qstr *iname,
2770 fname->usr_fname = iname;
2771 fname->disk_name.name = (unsigned char *) iname->name;
2772 fname->disk_name.len = iname->len;
2775 err = ext4_fname_setup_ci_filename(dir, iname, fname);
2764 ext4_fname_setup_filename(struct inode *dir, const struct qstr *iname, int lookup, struct ext4_filename *fname) argument
H A Dnamei.c1445 int ext4_fname_setup_ci_filename(struct inode *dir, const struct qstr *iname, argument
1463 iname, cf_name->name,
1478 return ext4fs_dirhash(dir, iname->name, iname->len, hinfo);
/linux-master/tools/perf/tests/
H A Dattr.py356 for iname, ievent in events.items():
358 event.group = iname
359 log.debug('[%s] has group leader [%s]' % (name, iname))
/linux-master/arch/x86/boot/
H A Dgenimage.sh171 names=("${names[@]}" -or -iname "$name")
/linux-master/drivers/media/pci/cx23885/
H A Dcx23885-video.c725 static const char *iname[] = { local
749 strscpy(i->name, iname[INPUT(n)->type], sizeof(i->name));
832 static const char *iname[] = { local
846 strscpy(i->name, iname[n], sizeof(i->name));
/linux-master/arch/mips/include/asm/
H A Dsgiarcs.h91 _PULONG iname; /* string identifier */ member in struct:linux_component
/linux-master/fs/f2fs/
H A Ddir.c102 * Prepare to search for @iname in @dir. This is similar to
107 int f2fs_setup_filename(struct inode *dir, const struct qstr *iname, argument
113 err = fscrypt_setup_filename(dir, iname, lookup, &crypt_name);
H A Df2fs.h3538 int f2fs_setup_filename(struct inode *dir, const struct qstr *iname,
/linux-master/drivers/media/usb/cx231xx/
H A Dcx231xx-video.c963 static const char *iname[] = { variable
983 ent->name = iname[INPUT(i)->type];
1034 strscpy(i->name, iname[INPUT(n)->type], sizeof(i->name));
/linux-master/drivers/media/usb/hdpvr/
H A Dhdpvr-video.c755 static const char *iname[] = { variable
771 strscpy(i->name, iname[n], sizeof(i->name));
/linux-master/fs/
H A Dnamei.c126 #define EMBEDDED_NAME_MAX (PATH_MAX - offsetof(struct filename, iname))
147 kname = (char *)result->iname;
163 const size_t size = offsetof(struct filename, iname[1]);
168 * result->iname[0] is within the same object and that
169 * kname can't be equal to result->iname, no matter what.
232 result->name = (char *)result->iname;
234 const size_t size = offsetof(struct filename, iname[1]);
269 if (name->name != name->iname) {
/linux-master/drivers/media/usb/em28xx/
H A Dem28xx-video.c954 static const char * const iname[] = { variable
994 ent->name = iname[INPUT(i)->type];
1665 strscpy(i->name, iname[INPUT(n)->type], sizeof(i->name));
/linux-master/drivers/media/pci/cx88/
H A Dcx88-video.c846 static const char * const iname[] = { local
864 strscpy(i->name, iname[INPUT(n).type], sizeof(i->name));
/linux-master/drivers/crypto/
H A Dn2_core.c1689 u64 node, const char *iname, unsigned long q_type,
1716 return spu_map_ino(dev, ip, iname, p, handler);
1687 handle_exec_unit(struct spu_mdesc_info *ip, struct list_head *list, struct platform_device *dev, struct mdesc_handle *mdesc, u64 node, const char *iname, unsigned long q_type, irq_handler_t handler, struct spu_queue **table) argument

Completed in 607 milliseconds