Home
last modified time | relevance | path

Searched refs:dump_path (Results 1 – 13 of 13) 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_diff_dumper.cpp31 TextFormatIR text_format, const std::string &dump_path) { in CreateIRDiffDumper() argument
34 return CreateProtobufIRDiffDumper(dump_path); in CreateIRDiffDumper()
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()
/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.cpp495 std::unique_ptr<IRDumper> CreateProtobufIRDumper(const std::string &dump_path) { in CreateProtobufIRDumper() argument
496 return std::make_unique<ProtobufIRDumper>(dump_path); in CreateProtobufIRDumper()
/development/vndk/tools/header-checker/src/repr/json/
Dapi.h31 std::unique_ptr<IRDumper> CreateJsonIRDumper(const std::string &dump_path);
Dir_dumper.cpp409 JsonIRDumper::JsonIRDumper(const std::string &dump_path) in JsonIRDumper() argument
410 : IRDumper(dump_path), translation_unit_() { in JsonIRDumper()
431 std::unique_ptr<IRDumper> CreateJsonIRDumper(const std::string &dump_path) { in CreateJsonIRDumper() argument
432 return std::make_unique<JsonIRDumper>(dump_path); in CreateJsonIRDumper()
Dir_dumper.h84 JsonIRDumper(const std::string &dump_path);
/development/vndk/tools/header-checker/tests/
Dtest.py29 dump_path = os.path.join(dump_dir, module.get_dump_name())
30 with open(dump_path, 'w') as f:
33 return dump_path