/third_party/musl/porting/liteos_m_iccarm/kernel/src/misc/ |
H A D | realpath.c | 53 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 D | realpath.c | 26 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 D | path_resolver.c | 302 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 D | uvwasi.c | 1645 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 D | path_resolver.h | 16 char** resolved_path,
|
/third_party/musl/porting/uniproton/kernel/src/misc/ |
H A D | realpath.c | 53 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 D | realpath.c | 53 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 D | realpath.h | 15 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 D | matchpathcon.c | 384 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 D | bench-realpath.js | 6 const resolved_path = path.resolve(__dirname, '../../lib/'); 37 fs.realpath(resolved_path, () => {
|
H A D | bench-realpathSync.js | 8 const resolved_path = path.resolve(__dirname, '../../lib/'); 18 const path = pathType === 'relative' ? relative_path : resolved_path;
|
/third_party/mesa3d/src/drm-shim/ |
H A D | drm_shim.c | 636 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 D | parse.py | 581 # 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 D | lookup_dep.py | 283 resolved_path = path.resolve() 285 return str(resolved_path).startswith(str(resolved_other))
|
/third_party/libfuse/example/ |
H A D | passthrough_hp.cc | 1248 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 D | pycore_fileutils.h | 136 wchar_t *resolved_path, 137 /* Number of characters of 'resolved_path' buffer
|
/third_party/selinux/libselinux/include/selinux/ |
H A D | selinux.h | 499 extern int realpath_not_final(const char *name, char *resolved_path);
|
/third_party/python/Python/ |
H A D | fileutils.c | 1965 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 D | dynlink.c | 5114 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 D | dynlink.c | 5503 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 D | libbpf.c | 12049 char resolved_path[512]; local 12068 err = resolve_full_path(binary_path, resolved_path, sizeof(resolved_path)); 12074 binary_path = resolved_path;
|