Home
last modified time | relevance | path

Searched refs:resolved_path (Results 1 - 21 of 21) sorted by relevance

/third_party/musl/porting/liteos_m_iccarm/kernel/src/misc/
H A Drealpath.c53 char *realpath(const char *__restrict path, char *__restrict resolved_path) in realpath() argument
59 if (!path || !*path || !resolved_path) { in realpath()
79 res = strcpy_s(resolved_path, PATH_MAX, path); in realpath()
84 return resolved_path; in realpath()
/third_party/ntfs-3g/libntfs-3g/
H A Drealpath.c26 char *ntfs_realpath(const char *path, char *resolved_path) in ntfs_realpath() argument
28 strncpy(resolved_path, path, PATH_MAX); in ntfs_realpath()
29 resolved_path[PATH_MAX] = '\0'; in ntfs_realpath()
30 return resolved_path; in ntfs_realpath()
/third_party/node/deps/uvwasi/src/
H A Dpath_resolver.c302 char** resolved_path, in uvwasi__resolve_path_to_host()
329 *resolved_path = uvwasi__malloc(uvwasi, *resolved_len + 1); in uvwasi__resolve_path_to_host()
331 if (*resolved_path == NULL) in uvwasi__resolve_path_to_host()
334 res_path = *resolved_path; in uvwasi__resolve_path_to_host()
354 res_path = *resolved_path; in uvwasi__resolve_path_to_host()
369 char** resolved_path, in uvwasi__resolve_path()
479 *resolved_path = host_path; in uvwasi__resolve_path()
481 *resolved_path = NULL; in uvwasi__resolve_path()
297 uvwasi__resolve_path_to_host( const uvwasi_t* uvwasi, const struct uvwasi_fd_wrap_t* fd, const char* path, uvwasi_size_t path_len, char** resolved_path, uvwasi_size_t* resolved_len ) uvwasi__resolve_path_to_host() argument
365 uvwasi__resolve_path(const uvwasi_t* uvwasi, const struct uvwasi_fd_wrap_t* fd, const char* path, uvwasi_size_t path_len, char** resolved_path, uvwasi_lookupflags_t flags) uvwasi__resolve_path() argument
H A Duvwasi.c1645 char* resolved_path; in uvwasi_path_create_directory() local
1669 err = uvwasi__resolve_path(uvwasi, wrap, path, path_len, &resolved_path, 0); in uvwasi_path_create_directory()
1673 r = uv_fs_mkdir(NULL, &req, resolved_path, 0777, NULL); in uvwasi_path_create_directory()
1675 uvwasi__free(uvwasi, resolved_path); in uvwasi_path_create_directory()
1695 char* resolved_path; in uvwasi_path_filestat_get() local
1725 &resolved_path, in uvwasi_path_filestat_get()
1730 r = uv_fs_lstat(NULL, &req, resolved_path, NULL); in uvwasi_path_filestat_get()
1731 uvwasi__free(uvwasi, resolved_path); in uvwasi_path_filestat_get()
1755 char* resolved_path; in uvwasi_path_filestat_set_times() local
1792 &resolved_path, in uvwasi_path_filestat_set_times()
1942 char* resolved_path; uvwasi_path_open() local
2098 char* resolved_path; uvwasi_path_readlink() local
2158 char* resolved_path; uvwasi_path_remove_directory() local
2362 char* resolved_path; uvwasi_path_unlink_file() local
[all...]
H A Dpath_resolver.h16 char** resolved_path,
/third_party/musl/porting/uniproton/kernel/src/misc/
H A Drealpath.c53 char *realpath(const char *__restrict path, char *__restrict resolved_path) in realpath() argument
79 res = strcpy_s(resolved_path, PATH_MAX, path); in realpath()
84 return resolved_path; in realpath()
/third_party/musl/porting/liteos_m/kernel/src/misc/
H A Drealpath.c53 char *realpath(const char *__restrict path, char *__restrict resolved_path) in realpath() argument
79 res = strcpy_s(resolved_path, PATH_MAX, path); in realpath()
84 return resolved_path; in realpath()
/third_party/ntfs-3g/include/ntfs-3g/
H A Drealpath.h15 extern char *ntfs_realpath(const char *path, char *resolved_path);
19 extern char *ntfs_realpath_canonicalize(const char *path, char *resolved_path);
/third_party/selinux/libselinux/src/
H A Dmatchpathcon.c384 int realpath_not_final(const char *name, char *resolved_path) in realpath_not_final() argument
403 p = strcpy(resolved_path, ""); in realpath_not_final()
407 p = realpath(tmp_path, resolved_path); in realpath_not_final()
410 p = realpath("./", resolved_path); in realpath_not_final()
429 resolved_path += len; in realpath_not_final()
430 strcpy(resolved_path, "/"); in realpath_not_final()
431 resolved_path += 1; in realpath_not_final()
432 strcpy(resolved_path, last_component); in realpath_not_final()
/third_party/node/benchmark/fs/
H A Dbench-realpath.js6 const resolved_path = path.resolve(__dirname, '../../lib/');
37 fs.realpath(resolved_path, () => {
H A Dbench-realpathSync.js8 const resolved_path = path.resolve(__dirname, '../../lib/');
18 const path = pathType === 'relative' ? relative_path : resolved_path;
/third_party/mesa3d/src/drm-shim/
H A Ddrm_shim.c636 realpath(const char *path, char *resolved_path) in realpath() argument
641 return real_realpath(path, resolved_path); in realpath()
643 strcpy(resolved_path, path); in realpath()
645 return resolved_path; in realpath()
/third_party/python/Lib/urllib/
H A Dparse.py581 # the resolved_path
584 resolved_path = []
589 resolved_path.pop()
592 # when popped from resolved_path if resolving for rfc3986
597 resolved_path.append(seg)
602 resolved_path.append('')
605 resolved_path) or '/', params, query, fragment)))
/third_party/skia/third_party/externals/angle2/tools/android/modularization/convenience/
H A Dlookup_dep.py283 resolved_path = path.resolve()
285 return str(resolved_path).startswith(str(resolved_other))
/third_party/libfuse/example/
H A Dpassthrough_hp.cc1248 char* resolved_path = realpath(argv[1], NULL); in parse_options() local
1249 if (resolved_path == NULL) in parse_options()
1251 fs.source = std::string {resolved_path}; in parse_options()
1252 free(resolved_path); in parse_options()
/third_party/python/Include/internal/
H A Dpycore_fileutils.h136 wchar_t *resolved_path,
137 /* Number of characters of 'resolved_path' buffer
/third_party/selinux/libselinux/include/selinux/
H A Dselinux.h499 extern int realpath_not_final(const char *name, char *resolved_path);
/third_party/python/Python/
H A Dfileutils.c1965 or if 'resolved_path' is too short. */
1968 wchar_t *resolved_path, size_t resolved_path_len) in _Py_wrealpath()
1996 wcsncpy(resolved_path, wresolved_path, resolved_path_len); in _Py_wrealpath()
1998 return resolved_path; in _Py_wrealpath()
1967 _Py_wrealpath(const wchar_t *path, wchar_t *resolved_path, size_t resolved_path_len) _Py_wrealpath() argument
/third_party/musl/porting/linux/user/ldso/
H A Ddynlink.c5114 static char resolved_path[PATH_MAX]; in resolve_fd_to_realpath() local
5120 ssize_t len = readlink(proc_self_fd, resolved_path, sizeof(resolved_path) - 1); in resolve_fd_to_realpath()
5124 resolved_path[len] = '\0'; in resolve_fd_to_realpath()
5125 strncpy(task->buf, resolved_path, PATH_MAX); in resolve_fd_to_realpath()
/third_party/musl/ldso/linux/
H A Ddynlink.c5503 static char resolved_path[PATH_MAX]; in resolve_fd_to_realpath() local
5509 ssize_t len = readlink(proc_self_fd, resolved_path, sizeof(resolved_path) - 1); in resolve_fd_to_realpath()
5513 resolved_path[len] = '\0'; in resolve_fd_to_realpath()
5514 strncpy(task->buf, resolved_path, PATH_MAX); in resolve_fd_to_realpath()
/third_party/libbpf/src/
H A Dlibbpf.c12049 char resolved_path[512]; local
12068 err = resolve_full_path(binary_path, resolved_path, sizeof(resolved_path));
12074 binary_path = resolved_path;

Completed in 50 milliseconds