/external/v8/tools/clang/scripts/ |
D | apply_edits.py | 76 resolved_path = os.path.realpath(os.path.join(build_directory, path)) 78 resolved_path = path 80 if not os.path.isfile(resolved_path): 82 resolved_path = None 84 path_to_resolved_path[path] = resolved_path 85 return resolved_path
|
/external/selinux/libselinux/src/ |
D | matchpathcon.c | 377 int realpath_not_final(const char *name, char *resolved_path) in realpath_not_final() argument 396 p = strcpy(resolved_path, ""); in realpath_not_final() 400 p = realpath(tmp_path, resolved_path); in realpath_not_final() 403 p = realpath("./", resolved_path); in realpath_not_final() 422 resolved_path += len; in realpath_not_final() 423 strcpy(resolved_path, "/"); in realpath_not_final() 424 resolved_path += 1; in realpath_not_final() 425 strcpy(resolved_path, last_component); in realpath_not_final()
|
/external/tensorflow/tensorflow/stream_executor/rocm/ |
D | rocm_diagnostics.cc | 166 char resolved_path[PATH_MAX] = {0}; in FindDsoVersion() local 167 if (realpath(info->dlpi_name, resolved_path) == nullptr) { in FindDsoVersion() 170 VLOG(1) << "found DLL info with resolved path: " << resolved_path; in FindDsoVersion() 171 const char* slash = rindex(resolved_path, '/'); in FindDsoVersion()
|
/external/selinux/sandbox/ |
D | seunshare.c | 753 char *resolved_path = NULL; in main() local 770 resolved_path = realpath(pwd->pw_dir,NULL); in main() 771 if (! resolved_path) goto childerr; in main() 773 if (verify_directory(resolved_path, NULL, &st_curhomedir) < 0) in main() 775 if (check_owner_uid(uid, resolved_path, &st_curhomedir) < 0) in main() 779 if (homedir_s && seunshare_mount(homedir_s, resolved_path, in main() 851 free(resolved_path); in main()
|
/external/tensorflow/tensorflow/stream_executor/cuda/ |
D | cuda_diagnostics.cc | 250 char resolved_path[PATH_MAX] = {0}; in FindDsoVersion() local 251 if (realpath(info->dlpi_name, resolved_path) == nullptr) { in FindDsoVersion() 254 VLOG(1) << "found DLL info with resolved path: " << resolved_path; in FindDsoVersion() 255 const char *slash = rindex(resolved_path, '/'); in FindDsoVersion()
|
/external/python/cpython3/Lib/urllib/ |
D | parse.py | 541 resolved_path = [] 546 resolved_path.pop() 554 resolved_path.append(seg) 559 resolved_path.append('') 562 resolved_path) or '/', params, query, fragment)))
|
/external/compiler-rt/lib/tsan/dd/ |
D | dd_interceptors.cc | 226 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) { in INTERCEPTOR() argument 228 return REAL(realpath)(path, resolved_path); in INTERCEPTOR()
|
/external/python/cpython3/Include/ |
D | fileutils.h | 155 wchar_t *resolved_path,
|
/external/ImageMagick/MagickCore/ |
D | module.c | 587 resolved_path[PATH_MAX+1]; in GetMagickModulePath() local 589 if (realpath(path,resolved_path) != (char *) NULL) in GetMagickModulePath() 590 (void) CopyMagickString(path,resolved_path,MagickPathExtent); in GetMagickModulePath()
|
/external/python/cpython3/Python/ |
D | fileutils.c | 1589 wchar_t *resolved_path, size_t resolved_path_size) in _Py_wrealpath() argument 1616 wcsncpy(resolved_path, wresolved_path, resolved_path_size); in _Py_wrealpath() 1618 return resolved_path; in _Py_wrealpath()
|
/external/selinux/libselinux/include/selinux/ |
D | selinux.h | 458 extern int realpath_not_final(const char *name, char *resolved_path);
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 3036 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) { 3038 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path); 3046 if (!resolved_path) 3047 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1); 3049 char *res = REAL(realpath)(path, resolved_path);
|