Home
last modified time | relevance | path

Searched refs:relativepath (Results 1 – 5 of 5) sorted by relevance

/third_party/NuttX/fs/vfs/
Dfs_rmdir.c95 char *relativepath = NULL; in do_rmdir() local
106 ret = get_path_from_fd(dirfd, &relativepath); in do_rmdir()
112 if (relativepath) in do_rmdir()
114 ret = vfs_normalize_path((const char *)relativepath, pathname, &fullpath); in do_rmdir()
115 free(relativepath); in do_rmdir()
Dfs_unlink.c78 char *relativepath = NULL; in do_unlink() local
81 ret = get_path_from_fd(dirfd, &relativepath); in do_unlink()
87 ret = vfs_normalize_path((const char *)relativepath, pathname, &fullpath); in do_unlink()
88 if (relativepath) in do_unlink()
90 free(relativepath); in do_unlink()
Dfs_mkdir.c45 char *relativepath = NULL; in do_mkdir() local
52 ret = get_path_from_fd(dirfd, &relativepath); in do_mkdir()
58 ret = vfs_normalize_path((const char *)relativepath, pathname, &fullpath); in do_mkdir()
59 if (relativepath) in do_mkdir()
61 free(relativepath); in do_mkdir()
/third_party/NuttX/fs/dirent/
Dfs_opendir.c159 char *relativepath = NULL; in do_opendir() local
167 ret = get_path_from_fd(AT_FDCWD, &relativepath); in do_opendir()
173 ret = vfs_normalize_path((const char *)relativepath, path, &fullpath); in do_opendir()
174 if (relativepath) in do_opendir()
176 free(relativepath); in do_opendir()
/third_party/icu/icu4c/source/test/cintltst/
Dsprpdata.c280 const char *relativepath = NULL; in doStringPrepTest() local
286 relativepath = U_FILE_SEP_STRING"test"U_FILE_SEP_STRING"testdata"U_FILE_SEP_STRING; in doStringPrepTest()
289relativepath = ".."U_FILE_SEP_STRING".."U_FILE_SEP_STRING"test"U_FILE_SEP_STRING"testdata"U_FILE_S… in doStringPrepTest()
301 filename = (char*) malloc(strlen(srcdatapath)+strlen(relativepath)+strlen(txtFileName)+10 ); in doStringPrepTest()
304 strcat(filename,relativepath); in doStringPrepTest()