Searched refs:oldName (Results 1 - 8 of 8) sorted by relevance
/kernel/liteos_a/testsuites/unittest/container/smoke/ |
H A D | It_uts_container_002.cpp | 75 struct utsname oldName; in ItUtsContainer002() local 76 ret = uname(&oldName); in ItUtsContainer002() 95 ret = strcmp(oldName.nodename, oldName1.nodename); in ItUtsContainer002()
|
H A D | It_uts_container_004.cpp | 75 struct utsname oldName; in ItUtsContainer004() local 77 ret = uname(&oldName); in ItUtsContainer004() 95 ret = strcmp(oldName.nodename, oldName1.nodename); in ItUtsContainer004()
|
/kernel/uniproton/src/fs/ |
H A D | fs.c | 82 int rename(const char *oldName, const char *newName) in rename() argument 84 S32 ret = OsVfsRename(oldName, newName); in rename()
|
/kernel/uniproton/src/fs/vfs/ |
H A D | vfs_operations.h | 49 S32 OsVfsRename(const char *oldName, const char *newName);
|
H A D | vfs_fs.c | 385 S32 OsVfsRename(const char *oldName, const char *newName) in OsVfsRename() argument 393 if ((oldName == NULL) || (newName == NULL)) { in OsVfsRename() 403 mpOld = OsVfsFindMp(oldName, &pathInMpOld); in OsVfsRename()
|
/kernel/liteos_m/components/fs/fatfs/ |
H A D | fatfs.c | 782 int FatfsRename(struct MountPoint *mp, const char *oldName, const char *newName)
in FatfsRename() argument 787 if ((oldName == NULL) || (newName == NULL)) {
in FatfsRename() 797 ret = FsChangeDrive(oldName);
in FatfsRename() 804 res = f_rename(oldName, newName);
in FatfsRename()
|
/kernel/liteos_m/components/fs/littlefs/ |
H A D | lfs_adapter.c | 576 int LfsRename(struct MountPoint *mp, const char *oldName, const char *newName)
in LfsRename() argument 580 if ((mp == NULL) || (oldName == NULL) || (newName == NULL)) {
in LfsRename() 590 ret = lfs_rename((lfs_t *)mp->mData, oldName, newName);
in LfsRename()
|
/kernel/uniproton/src/fs/littlefs/ |
H A D | lfs_adapter.c | 550 static S32 OsLfsRename(struct TagMountPoint *mp, const char *oldName, const char *newName)
in OsLfsRename() argument 554 if ((mp == NULL) || (oldName == NULL) || (newName == NULL)) {
in OsLfsRename() 564 ret = lfs_rename((lfs_t *)mp->mData, oldName, newName);
in OsLfsRename()
|
Completed in 7 milliseconds