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

  /external/selinux/libselinux/src/
matchpathcon.c 349 int realpath_not_final(const char *name, char *resolved_path)
374 p = strcpy(resolved_path, "");
378 p = realpath(tmp_path, resolved_path);
381 p = realpath("./", resolved_path);
400 resolved_path += len;
401 strcpy(resolved_path, "/");
402 resolved_path += 1;
403 strcpy(resolved_path, last_component);
  /external/selinux/policycoreutils/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 229 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) {
231 return REAL(realpath)(path, resolved_path);
  /external/selinux/libselinux/include/selinux/
selinux.h 452 extern int realpath_not_final(const char *name, char *resolved_path);
  /bionic/linker/
linker.cpp 451 char resolved_path[PATH_MAX]; local
453 if (realpath(original_path, resolved_path) != nullptr) {
455 if (stat(resolved_path, &s) == 0) {
457 resolved_paths->push_back(resolved_path);
459 DL_WARN("Warning: \"%s\" is not a directory (excluding from path)", resolved_path);
463 DL_WARN("Warning: cannot stat file \"%s\": %s", resolved_path, strerror(errno));
478 if (realpath(zip_path.c_str(), resolved_path) == nullptr) {
483 resolved_paths->push_back(std::string(resolved_path) + kZipFileSeparator + entry_path);
    [all...]

Completed in 125 milliseconds