Home
last modified time | relevance | path

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

/bionic/tools/versioner/src/
Dversioner.cpp86 std::string header_path; member
101 collectHeaders(location.header_path, location.ignored_directories); in collectRequirements()
104 if (is_dir(location.header_path)) { in collectRequirements()
105 dependencies.emplace_back(location.header_path); in collectRequirements()
191 auto vfs = createCommonVFS(location.header_path, location.dependency_dir, add_include); in compileHeaders()
614 location.header_path = versioner_dir + "/current"; in main()
620 if (!android::base::Realpath(argv[optind], &location.header_path)) { in main()
632 std::string fortify_path = location.header_path; in main()
633 if (!android::base::EndsWith(location.header_path, "/")) { in main()
650 if (const char *path = location.header_path.c_str(); stat(path, &st) != 0) { in main()
[all …]
DVFS.cpp83 std::string header_path = std::string(top) + "/bionic/libc/include/android/versioning.h"; in createCommonVFS() local
84 auto buffer_opt = llvm::MemoryBuffer::getFile(header_path); in createCommonVFS()
86 err(1, "failed to open %s", header_path.c_str()); in createCommonVFS()