HomeSort by relevance Sort by last modified time
    Searched refs:resolved_path (Results 1 - 6 of 6) sorted by null

  /bionic/linker/
linker_utils.cpp 208 char resolved_path[PATH_MAX]; local
210 if (realpath(original_path, resolved_path) != nullptr) {
212 if (stat(resolved_path, &s) == 0) {
214 resolved_paths->push_back(resolved_path);
216 DL_WARN("Warning: \"%s\" is not a directory (excluding from path)", resolved_path);
220 DL_WARN("Warning: cannot stat file \"%s\": %s", resolved_path, strerror(errno));
235 if (realpath(zip_path.c_str(), resolved_path) == nullptr) {
240 resolved_paths->push_back(std::string(resolved_path) + kZipFileSeparator + entry_path);
  /external/v8/tools/clang/scripts/
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/
matchpathcon.c 377 int realpath_not_final(const char *name, char *resolved_path)
396 p = strcpy(resolved_path, "");
400 p = realpath(tmp_path, resolved_path);
403 p = realpath("./", resolved_path);
422 resolved_path += len;
423 strcpy(resolved_path, "/");
424 resolved_path += 1;
425 strcpy(resolved_path, last_component);
  /external/selinux/sandbox/
seunshare.c 753 char *resolved_path = NULL; local
770 resolved_path = realpath(pwd->pw_dir,NULL);
771 if (! resolved_path) goto childerr;
773 if (verify_directory(resolved_path, NULL, &st_curhomedir) < 0)
775 if (check_owner_uid(uid, resolved_path, &st_curhomedir) < 0)
779 if (homedir_s && seunshare_mount(homedir_s, resolved_path,
851 free(resolved_path);
  /external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc 226 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) {
228 return REAL(realpath)(path, resolved_path);
  /external/selinux/libselinux/include/selinux/
selinux.h 455 extern int realpath_not_final(const char *name, char *resolved_path);

Completed in 655 milliseconds