Home
last modified time | relevance | path

Searched refs:exported_headers (Results 1 – 15 of 15) sorted by relevance

/development/vndk/tools/header-checker/src/utils/
Dcollect_exported_headers.cpp65 std::set<std::string> *exported_headers, in CollectExportedHeaderSet() argument
101 exported_headers->insert(NormalizePath(file_path, root_dir)); in CollectExportedHeaderSet()
109 std::set<std::string> exported_headers; in CollectAllExportedHeaders() local
111 if (!CollectExportedHeaderSet(dir, &exported_headers, root_dir)) { in CollectAllExportedHeaders()
116 return exported_headers; in CollectAllExportedHeaders()
/development/vndk/tools/header-checker/src/repr/
Dir_reader.cpp35 TextFormatIR text_format, const std::set<std::string> *exported_headers) { in CreateIRReader() argument
38 return CreateProtobufIRReader(exported_headers); in CreateIRReader()
40 return CreateJsonIRReader(exported_headers); in CreateIRReader()
Dir_reader.h33 const std::set<std::string> *exported_headers = nullptr);
35 IRReader(const std::set<std::string> *exported_headers) in IRReader() argument
36 : module_(new ModuleIR(exported_headers)) {} in IRReader()
Dir_representation.h771 ModuleIR(const std::set<std::string> *exported_headers) in ModuleIR() argument
772 : exported_headers_(exported_headers) {} in ModuleIR()
/development/vndk/tools/header-checker/src/dumper/
Dheader_checker.h41 std::set<std::string> exported_headers, in HeaderCheckerOptions() argument
46 exported_headers_(std::move(exported_headers)), in HeaderCheckerOptions()
Dast_processing.cpp184 const auto &exported_headers = options_.exported_headers_; in TraverseDecl() local
187 (exported_headers.find(source_file) == exported_headers.end())) { in TraverseDecl()
Dheader_checker.cpp178 std::set<std::string> exported_headers = in main() local
185 std::move(exported_headers), root_dir_or_cwd, output_format, in main()
/development/vndk/tools/header-checker/src/repr/protobuf/
Dir_reader.h41 ProtobufIRReader(const std::set<std::string> *exported_headers) in ProtobufIRReader() argument
42 : IRReader(exported_headers) {} in ProtobufIRReader()
Dapi.h35 const std::set<std::string> *exported_headers);
Dir_reader.cpp319 const std::set<std::string> *exported_headers) { in CreateProtobufIRReader() argument
320 return std::make_unique<ProtobufIRReader>(exported_headers); in CreateProtobufIRReader()
/development/vndk/tools/header-checker/src/repr/json/
Dir_reader.h116 JsonIRReader(const std::set<std::string> *exported_headers) in JsonIRReader() argument
117 : IRReader(exported_headers) {} in JsonIRReader()
Dapi.h34 const std::set<std::string> *exported_headers);
Dir_reader.cpp422 const std::set<std::string> *exported_headers) { in CreateJsonIRReader() argument
423 return std::make_unique<JsonIRReader>(exported_headers); in CreateJsonIRReader()
/development/vndk/tools/header-checker/src/linker/
Dmodule_merger.h43 ModuleMerger(const std::set<std::string> *exported_headers) in ModuleMerger() argument
44 : module_(new repr::ModuleIR(exported_headers)) {} in ModuleMerger()
Dheader_abi_linker.cpp196 const std::set<std::string> *exported_headers, in DeDuplicateAbiElementsThread() argument
200 linker::ModuleMerger local_merger(exported_headers); in DeDuplicateAbiElementsThread()
212 repr::IRReader::CreateIRReader(input_format, exported_headers); in DeDuplicateAbiElementsThread()