Home
last modified time | relevance | path

Searched refs:newpath (Results 1 – 22 of 22) sorted by relevance

/OK3568_Linux_fs/yocto/poky/scripts/
H A Doe-buildenv-internal96 for newpath in "$BITBAKEDIR/bin" "$OEROOT/scripts"; do
98 PATH=$(echo $PATH | sed -re "s#(^|:)$newpath(:|$)#\2#g;s#^:##")
101 PATH="$newpath:$PATH"
103 unset BITBAKEDIR newpath
/OK3568_Linux_fs/external/xserver/hw/xwin/
H A DInitOutput.c506 char *newpath = malloc(newsize + 1); in winFixupPaths() local
508 strncpy(newpath, oldptr, newsize); in winFixupPaths()
509 newpath[newsize] = 0; in winFixupPaths()
511 if (strncmp(libx11dir, newpath, libx11dir_len) == 0) { in winFixupPaths()
517 strncat(compose, newpath + libx11dir_len, newsize - basedirlen); in winFixupPaths()
519 free(newpath); in winFixupPaths()
520 newpath = compose; in winFixupPaths()
537 strcpy(newfp + oldfp_len, newpath); in winFixupPaths()
539 free(newpath); in winFixupPaths()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/
H A Dlocal.py52 newpath = path
58 newpath, hist = bb.utils.which(filespath, path, history=True)
60 if not os.path.exists(newpath):
/OK3568_Linux_fs/buildroot/support/misc/
H A Drelocate-sdk.sh26 newpath="$(sed -e "s|${OLDPATH}|${NEWPATH}|g" "${LOCFILE}")"
27 if [ "${NEWPATH}" != "${newpath}" ]; then
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/e2fsprogs/e2fsprogs/
H A Dextents.patch34 newpath->max_entries = ext2fs_le16_to_cpu(eh->eh_max);
37 + if (newpath->left <= 0)
42 newpath->end_blk = ext2fs_le32_to_cpu(ix->ei_block);
/OK3568_Linux_fs/yocto/poky/scripts/lib/
H A Dscriptpath.py15 newpath = basepath + '/meta/lib'
16 sys.path.insert(0, newpath)
/OK3568_Linux_fs/buildroot/package/e2fsprogs/
H A D0001-libext2fs-add-sanity-check-to-extent-manipulation.patch37 newpath->max_entries = ext2fs_le16_to_cpu(eh->eh_max);
40 + if (newpath->left <= 0)
45 newpath->end_blk = ext2fs_le32_to_cpu(ix->ei_block);
/OK3568_Linux_fs/kernel/tools/testing/selftests/openat2/
H A Dhelpers.c40 int newdirfd, const char *newpath, unsigned int flags) in sys_renameat2() argument
43 newdirfd, newpath, flags); in sys_renameat2()
H A Dhelpers.h100 int newdirfd, const char *newpath, unsigned int flags);
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dcachedpath.py30 newpath = os.path.normpath(path)
31 self.normpathcache[path] = newpath
32 return newpath
/OK3568_Linux_fs/u-boot/fs/yaffs2/
H A Dyaffsfs.h170 int yaffs_symlink(const YCHAR *oldpath, const YCHAR *newpath);
173 int yaffs_link(const YCHAR *oldpath, const YCHAR *newpath);
H A Dyaffsfs.c2989 int yaffs_symlink(const YCHAR *oldpath, const YCHAR *newpath) in yaffs_symlink() argument
2999 if (!oldpath || !newpath) { in yaffs_symlink()
3004 if (yaffsfs_CheckPath(newpath) < 0 || yaffsfs_CheckPath(oldpath) < 0) { in yaffs_symlink()
3010 parent = yaffsfs_FindDirectory(NULL, newpath, &name, 0, &notDir, &loop); in yaffs_symlink()
3026 (NULL, newpath, 0, 0, NULL, NULL, NULL)) in yaffs_symlink()
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/expect/expect/
H A D0001-fixline1-fix-line-1.patch26 # Synopsis: fixline1 newpath < input > output
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dchrpath.bbclass74newpath = "@loader_path/" + os.path.relpath(rpath, os.path.dirname(fpath.replace(rootdir, "/")))
75 …p = sub.Popen([d.expand("${HOST_PREFIX}install_name_tool"), '-change', rpath, newpath, fpath],stdo…
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bblayers/
H A Daction.py224 newpath = os.path.join(outputdir, item[len(layerdir)+1:])
225 bbfiles_layer.append(newpath)
/OK3568_Linux_fs/kernel/tools/perf/util/
H A Ddso.c505 char newpath[KMOD_DECOMP_LEN]; in __open_dso() local
506 size_t len = sizeof(newpath); in __open_dso()
508 if (dso__decompress_kmodule_path(dso, name, newpath, len) < 0) { in __open_dso()
514 strcpy(name, newpath); in __open_dso()
/OK3568_Linux_fs/external/xserver/dix/
H A Ddixfonts.c1700 unsigned char *cp, *pp, *nump, *newpath; in SetDefaultFontPath() local
1727 nump = cp = newpath = malloc(len); in SetDefaultFontPath()
1728 if (!newpath) { in SetDefaultFontPath()
1749 err = SetFontPathElements(num, newpath, &bad, TRUE); in SetDefaultFontPath()
1751 free(newpath); in SetDefaultFontPath()
/OK3568_Linux_fs/yocto/poky/scripts/lib/devtool/
H A Dstandard.py1146 newpath = os.path.join(newrecipedir, entry)
1147 logger.info('Renaming %s to %s' % (oldpath, newpath))
1148 shutil.move(oldpath, newpath)
/OK3568_Linux_fs/kernel/io_uring/
H A Dio_uring.c669 struct filename *newpath; member
691 struct filename *newpath; member
699 struct filename *newpath; member
3775 ren->newpath = getname(newf); in io_renameat_prep()
3776 if (IS_ERR(ren->newpath)) { in io_renameat_prep()
3778 return PTR_ERR(ren->newpath); in io_renameat_prep()
3794 ren->newpath, ren->flags); in io_renameat()
6542 putname(req->rename.newpath); in io_clean_op()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/
H A Dgdb.info47771 int rename(const char *oldpath, const char *newpath);
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/
H A Dgdb.info47771 int rename(const char *oldpath, const char *newpath);
/OK3568_Linux_fs/recovery/
HDrootfs.cpio.gz107070100A8AEB0000041ED0000000000000000000000116841B48100000000000000FD0000000200000000000000000000000200000000.�07070100A8B07C000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000900000000.gitkeep��07070100A8B07D000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000B00000000.skip_fsck����07070100A8AEB10000A1FF0000000000000000000000016841B0B600000007000000FD0000000200000000000000000000000400000000bin���usr/bin�07070100A8B07E000081A400000000000000000000000168412635000001CC000000FD0000000200000000000000000000001100000000busybox. ...