Searched refs:pathname (Results 1 – 15 of 15) sorted by relevance
| /u-boot/tools/dtoc/ |
| A D | test_src_scan.py | 83 pathname = os.path.join(indir, fname) 84 dirname = os.path.dirname(pathname) 86 tools.WriteFile(pathname, '', binary=False) 87 fname_list.append(pathname)
|
| A D | dtb_platdata.py | 209 pathname = os.path.join(dirname, fname) 212 self._outfile = open(pathname, 'w')
|
| /u-boot/tools/patman/ |
| A D | tools.py | 139 pathname = os.path.join(dirname, fname) 140 if os.path.exists(pathname): 141 return pathname 161 pathname = os.path.join(dirname, pattern) 162 files += glob.glob(pathname) 389 pathname = os.path.join(path, os.path.basename(fname)) 390 if os.path.exists(pathname): 391 return pathname
|
| /u-boot/include/ |
| A D | os.h | 61 int os_open(const char *pathname, int flags); 84 int os_unlink(const char *pathname);
|
| /u-boot/tools/binman/ |
| A D | state.py | 103 pathname = GetFdtPath(etype) 107 pathname = tools.GetInputFilename(fname) 108 data = tools.ReadFile(pathname) 109 return pathname, data
|
| A D | cbfs_util_test.py | 79 pathname = os.path.join(cls._indir, fname) 80 tools.WriteFile(pathname, contents) 81 return pathname
|
| A D | ftest.py | 514 pathname = os.path.join(cls._indir, fname) 515 dirname = os.path.dirname(pathname) 518 with open(pathname, 'wb') as fd: 520 return pathname 532 pathname = os.path.join(cls._indir, dirname) 533 if not os.path.exists(pathname): 534 os.makedirs(pathname) 535 return pathname 1831 outdata = tools.ReadFile(pathname) 1842 pathname) [all …]
|
| /u-boot/drivers/usb/emul/ |
| A D | sandbox_flash.c | 69 const char *pathname; member 373 plat->pathname = dev_read_string(dev, "sandbox,filepath"); in sandbox_flash_of_to_plat() 399 priv->fd = os_open(plat->pathname, OS_O_RDONLY); in sandbox_flash_probe() 401 return os_get_filesize(plat->pathname, &priv->file_size); in sandbox_flash_probe()
|
| /u-boot/drivers/mtd/ubi/ |
| A D | kapi.c | 298 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()
|
| /u-boot/include/linux/mtd/ |
| A D | ubi.h | 236 struct ubi_volume_desc *ubi_open_volume_path(const char *pathname, int mode);
|
| /u-boot/arch/sandbox/cpu/ |
| A D | os.c | 67 int os_open(const char *pathname, int os_flags) in os_open() argument 96 return open(pathname, flags, 0777); in os_open() 107 int os_unlink(const char *pathname) in os_unlink() argument 109 return unlink(pathname); in os_unlink()
|
| /u-boot/tools/buildman/ |
| A D | toolchain.py | 336 pathname = os.path.join(path, fname) 337 if os.path.exists(pathname): 338 pathname_list.append(pathname)
|
| /u-boot/fs/yaffs2/ |
| A D | yaffsfs.h | 174 int yaffs_mknod(const YCHAR *pathname, mode_t mode, dev_t dev);
|
| A D | yaffsfs.c | 3135 int yaffs_mknod(const YCHAR *pathname, mode_t mode, dev_t dev) in yaffs_mknod() argument
|
| /u-boot/doc/arch/ |
| A D | sandbox.rst | 468 environment variable to the correct pathname before building U-Boot.
|
Completed in 31 milliseconds