Home
last modified time | relevance | path

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

/bionic/linker/
Dlinker_utils.cpp208 char resolved_path[PATH_MAX]; in resolve_paths() local
210 if (realpath(original_path, resolved_path) != nullptr) { in resolve_paths()
212 if (stat(resolved_path, &s) == -1) { in resolve_paths()
213 DL_WARN("Warning: cannot stat file \"%s\": %s (ignoring)", resolved_path, strerror(errno)); in resolve_paths()
217 DL_WARN("Warning: \"%s\" is not a directory (ignoring)", resolved_path); in resolve_paths()
220 resolved_paths->push_back(resolved_path); in resolve_paths()
231 if (realpath(zip_path.c_str(), resolved_path) == nullptr) { in resolve_paths()
237 resolved_paths->push_back(std::string(resolved_path) + kZipFileSeparator + entry_path); in resolve_paths()
Dlinker_config.cpp241 std::string resolved_path; in parse_config_file() local
249 resolved_path = value; in parse_config_file()
251 resolved_path = buf; in parse_config_file()
262 resolved_path = value; in parse_config_file()
265 if (file_is_under_dir(binary_realpath, resolved_path)) { in parse_config_file()