Home
last modified time | relevance | path

Searched refs:newPath (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/buildroot/package/mtp/
H A D0008-MtpServer-fix-doMoveFile-with-wrong-newFilePath.patch25 MtpString newPath;
28 - result = mDatabase->getObjectFilePath(handle, newPath, fileLength, format);
31 + newPath = getStorage(id)->getPath();
33 + result = mDatabase->getObjectFilePath(newparent, newPath, fileLength, format);
35 + if (newPath.at(newPath.size() - 1) != '/')
36 + newPath.append("/");
41 + newPath.append(&filePath.c_str()[i + 1]);
47 VLOG(2) << "moving " << filePath.c_str() << " to " << newPath.c_str();
/OK3568_Linux_fs/u-boot/cmd/
H A Dyaffs2.c41 extern void cmd_yaffs_mv(const char *oldPath, const char *newPath);
267 char *newPath; in do_ymv() local
275 newPath = argv[2]; in do_ymv()
277 cmd_yaffs_mv(newPath, oldPath); in do_ymv()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/geoclue2/
H A Dqgeopositioninfosource_geoclue2.cpp397 const auto newPath = newLocation.path(); in handleNewLocation() local
399 qCDebug(lcPositioningGeoclue2) << "New location object path:" << newPath; in handleNewLocation()
403 newPath, in handleNewLocation()
/OK3568_Linux_fs/u-boot/fs/yaffs2/
H A Dyaffs_uboot_glue.c458 void cmd_yaffs_mv(const char *oldPath, const char *newPath) in cmd_yaffs_mv() argument
460 int retval = yaffs_rename(newPath, oldPath); in cmd_yaffs_mv()
H A Dyaffsfs.h102 int yaffs_rename(const YCHAR *oldPath, const YCHAR *newPath) ;
H A Dyaffsfs.c1479 int yaffs_rename(const YCHAR *oldPath, const YCHAR *newPath) in yaffs_rename() argument
1496 if (!oldPath || !newPath) { in yaffs_rename()
1501 if (yaffsfs_CheckPath(oldPath) < 0 || yaffsfs_CheckPath(newPath) < 0) { in yaffs_rename()
1506 if (yaffsfs_alt_dir_path(newPath, &alt_newpath) < 0) { in yaffs_rename()
1511 newPath = alt_newpath; in yaffs_rename()
1517 newdir = yaffsfs_FindDirectory(NULL, newPath, &newname, 0, in yaffs_rename()
1520 newobj = yaffsfs_FindObject(NULL, newPath, 0, 0, NULL, NULL, NULL); in yaffs_rename()