Home
last modified time | relevance | path

Searched refs:elf_function (Results 1 – 5 of 5) sorted by relevance

/development/vndk/tools/header-checker/src/repr/
Dir_representation.cpp188 void ModuleIR::AddElfFunction(ElfFunctionIR &&elf_function) { in AddElfFunction() argument
190 {elf_function.GetName(), std::move(elf_function)}); in AddElfFunction()
Dir_representation.h870 void AddElfFunction(ElfFunctionIR &&elf_function);
/development/vndk/tools/header-checker/src/repr/protobuf/
Dir_reader.cpp304 for (auto &&elf_function : tu.elf_functions()) { in ReadElfFunctions()
306 elf_function.name(), in ReadElfFunctions()
307 ElfSymbolBindingProtobufToIR(elf_function.binding())); in ReadElfFunctions()
Dir_dumper.cpp346 bool ProtobufIRDumper::AddElfFunctionIR(const ElfFunctionIR *elf_function) { in AddElfFunctionIR() argument
351 added_elf_function->set_name(elf_function->GetName()); in AddElfFunctionIR()
353 ElfSymbolBindingIRToProtobuf(elf_function->GetBinding())); in AddElfFunctionIR()
/development/vndk/tools/header-checker/src/repr/json/
Dir_reader.cpp413 for (auto &&elf_function : tu.GetObjects("elf_functions")) { in ReadElfFunctions()
414 ElfFunctionIR elf_function_ir(elf_function.GetString("name"), in ReadElfFunctions()
415 GetElfSymbolBinding(elf_function)); in ReadElfFunctions()