Home | History | Annotate | Download | only in linker

Lines Matching refs:resolved_path

451     char resolved_path[PATH_MAX];
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);