Home
last modified time | relevance | path

Searched refs:pathname (Results 1 – 11 of 11) sorted by relevance

/rk3399_rockchip-uboot/tools/patman/
H A Dtools.py106 pathname = os.path.join(dirname, fname)
107 if os.path.exists(pathname):
108 return pathname
/rk3399_rockchip-uboot/include/
H A Dos.h71 int os_open(const char *pathname, int flags);
93 int os_unlink(const char *pathname);
/rk3399_rockchip-uboot/drivers/usb/emul/
H A Dsandbox_flash.c71 const char *pathname; member
375 plat->pathname = dev_read_string(dev, "sandbox,filepath"); in sandbox_flash_ofdata_to_platdata()
401 priv->fd = os_open(plat->pathname, OS_O_RDONLY); in sandbox_flash_probe()
403 return os_get_filesize(plat->pathname, &priv->file_size); in sandbox_flash_probe()
/rk3399_rockchip-uboot/drivers/mtd/ubi/
H A Dkapi.c298 struct ubi_volume_desc *ubi_open_volume_path(const char *pathname, int mode) in ubi_open_volume_path() argument
304 dbg_gen("open volume %s, mode %d", pathname, mode); in ubi_open_volume_path()
306 if (!pathname || !*pathname) in ubi_open_volume_path()
309 error = kern_path(pathname, LOOKUP_FOLLOW, &path); in ubi_open_volume_path()
/rk3399_rockchip-uboot/arch/sandbox/cpu/
H A Dos.c66 int os_open(const char *pathname, int os_flags) in os_open() argument
88 return open(pathname, flags, 0777); in os_open()
96 int os_unlink(const char *pathname) in os_unlink() argument
98 return unlink(pathname); in os_unlink()
/rk3399_rockchip-uboot/tools/buildman/
H A Dtoolchain.py280 pathname = os.path.join(path, fname)
281 if os.path.exists(pathname):
282 pathname_list.append(pathname)
/rk3399_rockchip-uboot/include/linux/mtd/
H A Dubi.h237 struct ubi_volume_desc *ubi_open_volume_path(const char *pathname, int mode);
/rk3399_rockchip-uboot/tools/binman/
H A Dfunc_test.py219 pathname = os.path.join(self._indir, fname)
220 dirname = os.path.dirname(pathname)
223 with open(pathname, 'wb') as fd:
225 return pathname
/rk3399_rockchip-uboot/fs/yaffs2/
H A Dyaffsfs.h174 int yaffs_mknod(const YCHAR *pathname, mode_t mode, dev_t dev);
H A Dyaffsfs.c3137 int yaffs_mknod(const YCHAR *pathname, mode_t mode, dev_t dev) in yaffs_mknod() argument
/rk3399_rockchip-uboot/common/
H A Dlrz.c1768 make_dirs(char *pathname) in make_dirs() argument
1777 for (p = strchr(pathname, '/'); p != NULL; p = strchr(p+1, '/')) { in make_dirs()
1779 if (p == pathname || p[-1] == '/') in make_dirs()
1782 if (p[-1] == '.' && (p == pathname+1 || p[-2] == '/')) in make_dirs()
1785 if ( !mkdir(pathname, 0777)) { /* Try to create it as a dir */ in make_dirs()
1786 vfile("Made directory %s\n", pathname); in make_dirs()