Home
last modified time | relevance | path

Searched refs:path_name (Results 1 – 25 of 25) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/interconnect/
H A Dtrace.h25 __string(path_name, p->name)
35 __assign_str(path_name, p->name);
45 __get_str(path_name),
61 __string(path_name, p->name)
67 __assign_str(path_name, p->name);
73 __get_str(path_name),
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0025-efi-chainloader-Propagate-errors-from-copy_file_path.patch37 path_name = grub_calloc (len, GRUB_MAX_UTF16_PER_UTF8 * sizeof (*path_name));
38 if (!path_name)
42 size = grub_utf8_to_utf16 (path_name, len * GRUB_MAX_UTF16_PER_UTF8,
45 fp->path_name[size++] = '\0';
47 grub_free (path_name);
H A D0024-efi-Fix-some-malformed-device-path-arithmetic-errors.patch89 while (len > 0 && fp->path_name[len - 1] == 0)
H A D0005-calloc-Use-calloc-at-most-places.patch741 while (len > 0 && fp->path_name[len - 1] == 0)
1007 - path_name = grub_malloc (len * GRUB_MAX_UTF16_PER_UTF8 * sizeof (*path_name));
1008 + path_name = grub_calloc (len, GRUB_MAX_UTF16_PER_UTF8 * sizeof (*path_name));
1009 if (!path_name)
/OK3568_Linux_fs/kernel/tools/hv/
H A Dhv_fcopy_daemon.c34 p = (char *)smsg->path_name; in hv_start_fcopy()
36 (char *)smsg->path_name, (char *)smsg->file_name); in hv_start_fcopy()
49 if (access((char *)smsg->path_name, F_OK)) { in hv_start_fcopy()
51 if (mkdir((char *)smsg->path_name, 0755)) { in hv_start_fcopy()
53 (char *)smsg->path_name); in hv_start_fcopy()
58 (char *)smsg->path_name); in hv_start_fcopy()
/OK3568_Linux_fs/kernel/security/apparmor/
H A Dfile.c155 static int path_name(const char *op, struct aa_label *label, in path_name() function
293 error = path_name(op, &profile->label, path, in profile_path_perm()
368 error = path_name(OP_LINK, &profile->label, link, profile->path_flags, in profile_path_link()
374 error = path_name(OP_LINK, &profile->label, target, profile->path_flags, in profile_path_link()
/OK3568_Linux_fs/kernel/drivers/hv/
H A Dhv_fcopy.c155 utf16s_to_utf8s((wchar_t *)smsg_in->path_name, W_MAX_PATH, in fcopy_send_data()
157 (__u8 *)&smsg_out->path_name, W_MAX_PATH - 1); in fcopy_send_data()
/OK3568_Linux_fs/external/xserver/hw/xfree86/common/
H A Dxf86pciBus.c1306 char path_name[512], vendor_str[5], chip_str[5]; local
1328 snprintf(path_name, sizeof(path_name), "%s/%s",
1330 fp = fopen(path_name, "r");
1333 path_name);
/OK3568_Linux_fs/kernel/fs/cifs/
H A Ddfs_cache.c266 ref->ref_flag, ref->path_name, ref->node_name, in dump_refs()
788 ref->path_name = kstrndup(path, strlen(path), GFP_ATOMIC); in setup_referral()
789 if (!ref->path_name) in setup_referral()
806 kfree(ref->path_name); in setup_referral()
807 ref->path_name = NULL; in setup_referral()
H A Dcifsglob.h1679 char *path_name; member
1718 kfree(param->path_name); in free_dfs_info_param()
1730 kfree(param[i].path_name); in free_dfs_info_array()
H A Dmisc.c750 node->path_name = cifs_strndup_from_utf16(temp, max_len, in parse_dfs_referrals()
752 if (!node->path_name) { in parse_dfs_referrals()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/
H A Dhyperv.h132 __u16 path_name[W_MAX_PATH]; member
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/
H A Dhyperv.h132 __u16 path_name[W_MAX_PATH]; member
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Dhyperv.h132 __u16 path_name[W_MAX_PATH]; member
/OK3568_Linux_fs/kernel/arch/arm/mach-mmp/
H A Dttc_dkb.c208 .path_name = "mmp-parallel",
/OK3568_Linux_fs/kernel/include/video/
H A Dmmp_disp.h316 const char *path_name; member
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/mvl88w8977/mlinux/
H A Dmoal_main.c6474 t_u8 path_name[64]; local
6487 woal_create_dump_dir(phandle, path_name,
6488 sizeof(path_name));
6490 memset(path_name, 0, sizeof(path_name));
6491 strcpy(path_name, "/data");
6494 path_name);
6495 woal_dump_drv_info(phandle, path_name);
6505 sprintf(fwdump_fname, "%s/file_fwdump", path_name);
7367 t_u8 path_name[64], file_name[32]; local
7380 woal_create_dump_dir(phandle, path_name, sizeof(path_name));
[all …]
/OK3568_Linux_fs/kernel/fs/fuse/
H A Ddir.c405 char *path_name; in fuse_dentry_canonical_path() local
408 path_name = (char *)get_zeroed_page(GFP_KERNEL); in fuse_dentry_canonical_path()
409 if (!path_name) in fuse_dentry_canonical_path()
417 args.out_args[0].value = path_name; in fuse_dentry_canonical_path()
422 free_page((unsigned long)path_name); in fuse_dentry_canonical_path()
/OK3568_Linux_fs/kernel/tools/perf/scripts/python/
H A Dexport-to-postgresql.py736 path_name = output_dir_name + "/" + file_name
737 file = open(path_name, "wb+")
/OK3568_Linux_fs/kernel/drivers/video/fbdev/mmp/fb/
H A Dmmpfb.c567 fbi->path = mmp_get_path(mi->path_name); in mmpfb_probe()
569 dev_err(&pdev->dev, "can't get the path %s\n", mi->path_name); in mmpfb_probe()
/OK3568_Linux_fs/kernel/drivers/input/touchscreen/gt1x/
H A Dgt1x_update.c169 s32 gt1x_check_fs_mounted(char *path_name)
179 err = kern_path(path_name, LOOKUP_FOLLOW, &path);
/OK3568_Linux_fs/kernel/drivers/input/touchscreen/gt9xx/
H A Dgt9xx_update.c2582 u8 gup_check_fs_mounted(char *path_name) in gup_check_fs_mounted() argument
2594 err = kern_path(path_name, LOOKUP_FOLLOW, &path); in gup_check_fs_mounted()
2598 GTP_DEBUG("%s NOT Mounted: %d", path_name, err); in gup_check_fs_mounted()
H A Dgt9xx.c124 extern u8 gup_check_fs_mounted(char *path_name);
/OK3568_Linux_fs/kernel/drivers/net/wireless/nxp/mlinux/
H A Dmoal_cfg80211_util.c4382 char path_name[20]; in woal_cfg80211_event_csi_dump() local
4388 sprintf(path_name, "/data"); in woal_cfg80211_event_csi_dump()
4400 ret = woal_save_csi_dump_to_file(path_name, file_name, data, len, in woal_cfg80211_event_csi_dump()
/OK3568_Linux_fs/external/xserver/
H A DChangeLog14759 snprintf(path_name, sizeof(path_name), "%s/%s", ^~~~~~~