Home
last modified time | relevance | path

Searched refs:resolved_path (Results 1 – 1 of 1) sorted by relevance

/bionic/linker/
Dlinker.cpp444 char resolved_path[PATH_MAX]; in resolve_paths() local
446 if (realpath(original_path, resolved_path) != nullptr) { in resolve_paths()
448 if (stat(resolved_path, &s) == 0) { in resolve_paths()
450 resolved_paths->push_back(resolved_path); in resolve_paths()
452 DL_WARN("Warning: \"%s\" is not a directory (excluding from path)", resolved_path); in resolve_paths()
456 DL_WARN("Warning: cannot stat file \"%s\": %s", resolved_path, strerror(errno)); in resolve_paths()
471 if (realpath(zip_path.c_str(), resolved_path) == nullptr) { in resolve_paths()
476 resolved_paths->push_back(std::string(resolved_path) + kZipFileSeparator + entry_path); in resolve_paths()