Home
last modified time | relevance | path

Searched refs:newdir (Results 1 – 10 of 10) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-connectivity/bind/bind/
H A Dinit.d-add-support-for-read-only-rootfs.patch50 + newdir=$2
52 + cp -a $newdir/* $olddir
53 + mount --bind $olddir $newdir
/openbmc/qemu/fsdev/
H A Dfile-op-9p.h169 V9fsPath *newdir, const char *new_name);
/openbmc/qemu/hw/9pfs/
H A D9p-local.c1284 const char *old_name, V9fsPath *newdir, in local_renameat() argument
1302 ndirfd = local_opendir_nofollow(ctx, newdir->data); in local_renameat()
1366 V9fsPath olddir, newdir; in local_rename() local
1369 v9fs_path_init_dirname(&newdir, newpath); in local_rename()
1371 err = local_renameat(ctx, &olddir, oname, &newdir, nname); in local_rename()
1373 v9fs_path_free(&newdir); in local_rename()
H A D9p-synth.c532 const char *old_name, V9fsPath *newdir, in synth_renameat() argument
H A D9p.c3405 V9fsPath *newdir, in v9fs_fix_fid_paths() argument
3421 err = v9fs_co_name_to_path(pdu, newdir, new_name->data, &newpath); in v9fs_fix_fid_paths()
/openbmc/qemu/include/standard-headers/linux/
H A Dfuse.h753 uint64_t newdir; member
757 uint64_t newdir; member
/openbmc/u-boot/fs/yaffs2/
H A Dyaffsfs.c1482 struct yaffs_obj *newdir = NULL; in yaffs_rename() local
1517 newdir = yaffsfs_FindDirectory(NULL, newPath, &newname, 0, in yaffs_rename()
1531 if ((!olddir && notOldDir) || (!newdir && notNewDir)) { in yaffs_rename()
1541 } else if (!olddir || !newdir || !obj) { in yaffs_rename()
1550 } else if (olddir->my_dev != newdir->my_dev) { in yaffs_rename()
1562 struct yaffs_obj *xx = newdir; in yaffs_rename()
1574 result = yaffs_rename_obj(olddir, oldname, newdir, newname); in yaffs_rename()
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dupgrade.py67 newdir = olddir.replace(oldpv, newpv)
68 if olddir != newdir:
69 shutil.move(os.path.join(path, olddir), os.path.join(path, newdir))
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Ddevtool.py2218 newdir = os.path.join(recipedir, recipe + '-' + newversion)
2220 …self.assertExists(os.path.join(newdir, patchfn), 'Patch file should have been copied into new dire…
2221 …self.assertNotExists(os.path.join(newdir, backportedpatchfn), 'Backported patch file should not ha…
2222 …self.assertExists(os.path.join(newdir, '0002-Add-a-comment-to-the-code.patch'), 'New patch file sh…
2249 newdir = os.path.join(newrecipedir, recipe + '-' + newversion)
2251 …self.assertExists(os.path.join(newdir, patchfn), 'Patch file should have been copied into new dire…
2252 …self.assertNotExists(os.path.join(newdir, backportedpatchfn), 'Backported patch file should not ha…
2253 …self.assertExists(os.path.join(newdir, '0002-Add-a-comment-to-the-code.patch'), 'New patch file sh…
2328 newdir = os.path.join(appenddir, recipe)
2329 files = os.listdir(newdir)
/openbmc/u-boot/common/
H A Dcli_hush.c560 char *newdir; in builtin_cd() local
562 newdir = env_get("HOME"); in builtin_cd()
564 newdir = child->argv[1]; in builtin_cd()
565 if (chdir(newdir)) { in builtin_cd()
566 printf("cd: %s: %s\n", newdir, strerror(errno)); in builtin_cd()