Home
last modified time | relevance | path

Searched refs:pplen (Results 1 – 6 of 6) sorted by relevance

/Linux-v4.19/fs/cifs/
Dcifs_dfs_ref.c67 size_t pplen; in cifs_build_devname() local
92 pplen = prepath ? strlen(prepath) : 0; in cifs_build_devname()
93 dev = kmalloc(2 + unclen + 1 + pplen + 1, GFP_KERNEL); in cifs_build_devname()
109 if (pplen) { in cifs_build_devname()
112 memcpy(pos, prepath, pplen); in cifs_build_devname()
113 pos += pplen; in cifs_build_devname()
Ddir.c52 int pplen = vol->prepath ? strlen(vol->prepath) + 1 : 0; in cifs_build_path_to_root() local
57 if (pplen == 0) { in cifs_build_path_to_root()
67 full_path = kmalloc(dfsplen + pplen + 1, GFP_KERNEL); in cifs_build_path_to_root()
74 strncpy(full_path + dfsplen + 1, vol->prepath, pplen); in cifs_build_path_to_root()
76 full_path[dfsplen + pplen] = 0; /* add trailing null */ in cifs_build_path_to_root()
98 int pplen = 0; in build_path_from_dentry_optional_prefix() local
112 pplen = cifs_sb->prepath ? strlen(cifs_sb->prepath) + 1 : 0; in build_path_from_dentry_optional_prefix()
115 namelen = dfsplen + pplen; in build_path_from_dentry_optional_prefix()
156 if (namelen != dfsplen + pplen || read_seqretry(&rename_lock, seq)) { in build_path_from_dentry_optional_prefix()
172 if (pplen) { in build_path_from_dentry_optional_prefix()
[all …]
Dconnect.c3780 unsigned int pplen = vol->prepath ? strlen(vol->prepath) + 1 : 0; in build_unc_path_to_root() local
3783 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL); in build_unc_path_to_root()
3790 if (pplen) { in build_unc_path_to_root()
3792 strncpy(pos + 1, vol->prepath, pplen); in build_unc_path_to_root()
3793 pos += pplen; in build_unc_path_to_root()
/Linux-v4.19/include/media/davinci/
Dvpss.h40 short pplen; member
/Linux-v4.19/drivers/media/platform/davinci/
Dvpss.c397 current_reg |= (frame_size.pplen - 1); in dm365_vpss_set_pg_frame_size()
Disif.c691 frame_size.pplen = isif_cfg.bayer.win.height; in isif_config_raw()