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

/bionic/linker/
H A Dlinker_utils.cpp208 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);

Completed in 21 milliseconds