Home
last modified time | relevance | path

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

/bionic/linker/
Dlinker_utils.cpp215 char resolved_path[PATH_MAX]; in resolve_path() local
217 if (realpath(original_path, resolved_path) != nullptr) { in resolve_path()
219 if (stat(resolved_path, &s) == -1) { in resolve_path()
220 DL_WARN("Warning: cannot stat file \"%s\": %s (ignoring)", resolved_path, strerror(errno)); in resolve_path()
224 DL_WARN("Warning: \"%s\" is not a directory (ignoring)", resolved_path); in resolve_path()
227 return resolved_path; in resolve_path()
238 if (realpath(zip_path.c_str(), resolved_path) == nullptr) { in resolve_path()
244 return std::string(resolved_path) + kZipFileSeparator + entry_path; in resolve_path()
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()