Searched refs:relativepath (Results 1 – 5 of 5) sorted by relevance
/third_party/NuttX/fs/vfs/ |
D | fs_rmdir.c | 95 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()
|
D | fs_unlink.c | 78 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()
|
D | fs_mkdir.c | 45 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/ |
D | fs_opendir.c | 159 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/ |
D | sprpdata.c | 280 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() 289 …relativepath = ".."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()
|