Home
last modified time | relevance | path

Searched refs:added_function (Results 1 – 3 of 3) sorted by relevance

/development/vndk/tools/header-checker/src/repr/protobuf/
Dir_dumper.cpp182 abi_dump::FunctionDecl added_function; in ConvertFunctionIR() local
183 added_function.set_access(AccessIRToProtobuf(functionp->GetAccess())); in ConvertFunctionIR()
184 added_function.set_linker_set_key(functionp->GetLinkerSetKey()); in ConvertFunctionIR()
185 added_function.set_source_file(functionp->GetSourceFile()); in ConvertFunctionIR()
186 added_function.set_function_name(functionp->GetName()); in ConvertFunctionIR()
187 if (!AddFunctionParametersAndSetReturnType(&added_function, functionp) || in ConvertFunctionIR()
189 AddTemplateInformation(added_function.mutable_template_info(), functionp) in ConvertFunctionIR()
194 return added_function; in ConvertFunctionIR()
385 abi_dump::FunctionDecl *added_function = tu_ptr_->add_functions(); in AddFunctionIR() local
386 if (!added_function) { in AddFunctionIR()
[all …]
Dir_diff_dumper.cpp220 abi_dump::FunctionDecl *added_function = nullptr; in AddLoneFunctionDiffIR() local
223 added_function = diff_tu_->add_functions_removed(); in AddLoneFunctionDiffIR()
226 added_function = diff_tu_->add_functions_added(); in AddLoneFunctionDiffIR()
232 *added_function = IRToProtobufConverter::ConvertFunctionIR(function_ir); in AddLoneFunctionDiffIR()
/development/vndk/tools/header-checker/src/dumper/
Dast_processing.cpp88 auto added_function = std::make_unique<repr::FunctionIR>(); in MutateFunctionWithLinkageName() local
89 *added_function = *function; in MutateFunctionWithLinkageName()
90 added_function->SetLinkerSetKey(linkage_name); in MutateFunctionWithLinkageName()
91 return module->AddLinkableMessage(*added_function); in MutateFunctionWithLinkageName()