Searched defs:paths (Results 1 - 6 of 6) sorted by relevance

/bionic/libc/bionic/
H A Dftw.cpp49 char* const paths[2] = { const_cast<char*>(path), nullptr }; local
50 FTS* fts = fts_open(paths, fts_options, nullptr);
/bionic/tools/versioner/src/
H A DVFS.cpp38 char* paths[] = { const_cast<char*>(path.c_str()), nullptr }; local
40 fts_open(paths, FTS_COMFOLLOW | FTS_LOGICAL | FTS_NOCHDIR, nullptr), fts_close);
/bionic/linker/
H A Dlinker_main.cpp113 std::vector<std::string> paths; local
114 split_path(path, delimiters, &paths);
115 resolve_paths(paths, resolved_paths);
H A Dlinker_utils.cpp193 std::vector<std::string>* paths) {
195 *paths = android::base::Split(path, delimiters);
199 void resolve_paths(std::vector<std::string>& paths, argument
202 for (const auto& path : paths) {
203 // skip empty paths
192 split_path(const char* path, const char* delimiters, std::vector<std::string>* paths) argument
H A Dlinker_config.cpp325 std::vector<std::string> paths; local
326 split_path(paths_str.c_str(), ":", &paths);
336 for (auto&& path : paths) {
342 // do not remove paths that do not exist
343 resolve_paths(paths, &resolved_paths);
478 ns_config->set_search_paths(properties.get_paths(property_name_prefix + ".search.paths"));
479 ns_config->set_permitted_paths(properties.get_paths(property_name_prefix + ".permitted.paths"));
H A Dlinker.cpp333 std::vector<std::string> paths; local
334 split_path(path, delimiters, &paths);
335 resolve_paths(paths, resolved_paths);
1007 const std::vector<std::string>& paths,
1009 for (const auto& path : paths) {
1045 // If the name contains a slash, we should attempt to open it directly and not search the paths.
2191 // append parent namespace paths.
1005 open_library_on_paths(ZipArchiveCache* zip_archive_cache, const char* name, off64_t* file_offset, const std::vector<std::string>& paths, std::string* realpath) argument

Completed in 405 milliseconds