Home
last modified time | relevance | path

Searched refs:dump_path (Results 1 – 14 of 14) sorted by relevance

/development/vndk/tools/header-checker/src/repr/
Dir_dumper.h29 IRDumper(const std::string &dump_path) : dump_path_(dump_path) {} in IRDumper() argument
34 TextFormatIR text_format, const std::string &dump_path);
Dir_diff_dumper.h32 IRDiffDumper(const std::string &dump_path) : dump_path_(dump_path) {} in IRDiffDumper() argument
57 TextFormatIR, const std::string &dump_path);
Dir_dumper.cpp33 TextFormatIR text_format, const std::string &dump_path) { in CreateIRDumper() argument
36 return CreateProtobufIRDumper(dump_path); in CreateIRDumper()
38 return CreateJsonIRDumper(dump_path); in CreateIRDumper()
Dir_diff_dumper.cpp31 TextFormatIR text_format, const std::string &dump_path) { in CreateIRDiffDumper() argument
34 return CreateProtobufIRDiffDumper(dump_path); in CreateIRDiffDumper()
/development/vndk/tools/header-checker/src/repr/protobuf/
Dapi.h32 std::unique_ptr<IRDumper> CreateProtobufIRDumper(const std::string &dump_path);
38 const std::string &dump_path);
Dir_dumper.h60 ProtobufIRDumper(const std::string &dump_path) in ProtobufIRDumper() argument
61 : IRDumper(dump_path), tu_ptr_(new abi_dump::TranslationUnit()) {} in ProtobufIRDumper()
Dir_diff_dumper.h32 ProtobufIRDiffDumper(const std::string &dump_path) in ProtobufIRDiffDumper() argument
33 : IRDiffDumper(dump_path), in ProtobufIRDiffDumper()
Dir_diff_dumper.cpp372 const std::string &dump_path) { in CreateProtobufIRDiffDumper() argument
373 return std::make_unique<ProtobufIRDiffDumper>(dump_path); in CreateProtobufIRDiffDumper()
Dir_dumper.cpp483 std::unique_ptr<IRDumper> CreateProtobufIRDumper(const std::string &dump_path) { in CreateProtobufIRDumper() argument
484 return std::make_unique<ProtobufIRDumper>(dump_path); in CreateProtobufIRDumper()
/development/vndk/tools/header-checker/tests/
Dtest.py28 dump_path = os.path.join(dump_dir, module.get_dump_name())
29 module.make_dump(dump_path)
30 return dump_path
33 def _read_output_content(dump_path): argument
34 with open(dump_path, 'r') as f:
/development/vndk/tools/header-checker/src/repr/json/
Dir_dumper.cpp402 JsonIRDumper::JsonIRDumper(const std::string &dump_path) in JsonIRDumper() argument
403 : IRDumper(dump_path), translation_unit_() { in JsonIRDumper()
424 std::unique_ptr<IRDumper> CreateJsonIRDumper(const std::string &dump_path) { in CreateJsonIRDumper() argument
425 return std::make_unique<JsonIRDumper>(dump_path); in CreateJsonIRDumper()
Dapi.h31 std::unique_ptr<IRDumper> CreateJsonIRDumper(const std::string &dump_path);
Dir_dumper.h81 JsonIRDumper(const std::string &dump_path);
/development/vndk/tools/header-checker/utils/
Dutils.py79 def _validate_dump_content(dump_path): argument
81 with open(dump_path, 'r') as f:
84 dump_path + ' contains absolute path to $ANDROID_BUILD_TOP.')