HomeSort by relevance Sort by last modified time
    Searched defs:resolved_path (Results 1 - 2 of 2) 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) == -1) {
213 DL_WARN("Warning: cannot stat file \"%s\": %s (ignoring)", resolved_path, strerror(errno));
217 DL_WARN("Warning: \"%s\" is not a directory (ignoring)", resolved_path);
220 resolved_paths->push_back(resolved_path);
231 if (realpath(zip_path.c_str(), resolved_path) == nullptr) {
237 resolved_paths->push_back(std::string(resolved_path) + kZipFileSeparator + entry_path);
  /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);

Completed in 128 milliseconds