Home
last modified time | relevance | path

Searched refs:resolved_path (Results 1 – 2 of 2) sorted by relevance

/kernel/liteos_a/fs/vfs/operation/
Dvfs_other.c651 char *realpath(const char *path, char *resolved_path) in realpath() argument
666 if (resolved_path == NULL) { in realpath()
674 ret = strcpy_s(resolved_path, PATH_MAX, new_path); in realpath()
686 return resolved_path; in realpath()
/kernel/liteos_a/syscall/
Dfs_syscall.c2137 char *SysRealpath(const char *path, char *resolved_path) in SysRealpath() argument
2144 if (resolved_path == NULL) { in SysRealpath()
2162 ret = LOS_ArchCopyToUser(resolved_path, resolved_pathRet, strlen(resolved_pathRet) + 1); in SysRealpath()
2167 result = resolved_path; in SysRealpath()